function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar = 0,scrollbars = 1,location = 0,statusbar = 0,menubar = 0,resizable = 0,width = 680,height = 500,left = 200,top = 200');");
}

//Added By chris 21th Dec , 2009
function popUp_height(URL,height) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar = 0,scrollbars = 1,location = 0,statusbar = 0,menubar = 0,resizable = 0,width = 680,height = "+height+",left = 200,top = 200');");
}

function popUp_both(URL,height,width) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar = 0,scrollbars = 1,location = no,statusbar = 0,menubar = 0,resizable = 0,width = "+width + ",height = "+height+",left = 200,top = 200');");
}


//End By Chris