// Simple PopUp Window Function
function popUp(address,W,H,Name) {
	eval("page" + Name + " = window.open(address, '" + Name + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+W+',height='+H+',left = 100,top = 100');");
	eval("page" + Name + ".focus();");
}
