<!--
function top(){
	window.location	= "#";
}
function pop(html)
{
	window_name = "popup";
	html = html + ".html";

	options = "width=650,height=480,left=10,top=10,";
	options += "directories=no,toolbar=no,resizable=no,menubar=no,scrollbars=no";

	window.open(html,window_name,options);
}
function popupWin(URL) {
	newwindow = window.open(URL, "popup", "scrollbars=no,resizable=no,width=650,height=500");
	newwindow.focus();
}
function image_popup(){
	newwindow = window.open("banner_popup.htm", "popup", "scrollbars=no,resizable=no,width=750,height=285");
	newwindow.focus();
}
//-->

