function $(id) {
	return document.getElementById(id);
}

function add_book() {
	bwin = window.open('/bin/bookmark.php', 'bbwin', 'width=1,height=1');
	window.focus();
	try {
		if (window.sidebar)
			window.sidebar.addPanel("JustWatchPorn.com", "http://www.justwatchporn.com/", "");
		else if (document.all)
			window.external.AddFavorite("http://www.justwatchporn.com/", "JustWatchPorn.com");
		else
			alert("Please bookmark this page manually by hitting Ctrl-D.");
	} catch (e) {
		alert("Please bookmark this page manually by hitting Ctrl-D.");
	}
}

function set_cookie(c_name, value, expiredays)	{
	var exdate = new Date();
	exdate.setDate(exdate.getDate() + expiredays);
	document.cookie = c_name + "=" + escape(value) + ";path=/" + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
}

function get_cookie(c_name) {
	if (document.cookie.length > 0) {
		c_start = document.cookie.indexOf(c_name + "=");
		if (c_start != -1) { 
			c_start = c_start + c_name.length + 1;
			c_end = document.cookie.indexOf(";", c_start);
			if (c_end == -1) c_end = document.cookie.length;
			return unescape(document.cookie.substring(c_start, c_end));
		}
	}
	return '';
}
