var newwindow;
var wheight = 0, wwidth = 0;

function popitup(url,x,y) {
day = new Date();
id = day.getTime();
eval("newwindow" + id + " = window.open('','','width=' + x + ',height=' + y + ',resizable=0,top=100,left=100');");
eval("newwindow" + id + ".document.writeln('<html><head><title>Full View<\/title> <\/head> <body style=\"margin:0px; overflow:hidden; padding:0px;\">');");
eval("newwindow" + id + ".document.writeln('<img alt=\"\" src=\"' + url + '\" />');");
eval("newwindow" + id + ".document.writeln('<\/body> <\/html>');");
eval("newwindow" + id + ".document.close();");
}

function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
	el.style.display = '';
	}
}
function send()
{document.theform.submit()}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=386,left = 540,top = 332');");
}