<!-- Begin
function news(URL,resizable,width,height) {
day = new Date();
id = day.getTime();

if(resizable == undefined)
	resizable = 0;
	
if(width == undefined)
	width = 640;

if(height == undefined)
	height = 480;

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable="+resizable+",width="+width+",height="+height+",left = 320,top = 272');");
}
// End -->