
window.onload = function() {
	if (document.getElementById("livechat")) {
		document.getElementById("livechat").onclick = function() {
			return winpopbasic("shoutbox/shoutbox.php?html=1", "sb", "242", "468");
		};
	}
};

function winpopcent(url, name, width, height) {
	var LeftPosition = (screen.width)? (screen.width-width) / 2 : 0;
	var TopPosition = (screen.height)? (screen.height-height) / 2 : 0;
	var opts = "top=" + TopPosition + ",left=" + LeftPosition;
	opts += ",width=" + width + ",height=" + height;
	opts += ",scrollbars,toolbar,status,location,menubar,resizable";
	var pop = window.open(url, name, opts);
	pop.focus();
	return false;
}

function winpop(url, name, width, height, scrollbars) {
	var opts=",width=" + width + ",height=" + height + ",scrollbars=" + scrollbars;
	opts += ",toolbar,status,location,menubar,resizable";
	var pop = window.open(url, name, opts);
	pop.focus();
	return false;
}

function winpopbasic(url, name, width, height) {
	var opts=",width=" + width + ",height=" + height;
	opts += ",resizable";
	var pop = window.open(url, name, opts);
	pop.focus();
	return false;
}
