function popup(page,width,height) {
window.open(page,'popup','width=' + width + ',height=' + height + ',toolbar=false,scrollbars=false');
}

function popupscroll(page,width,height) {
window.open(page,'popup','width=' + width + ',height=' + height + ',toolbar=0,scrollbars=1');
}

function popuplarge(page) {
window.open(page,'popup','width=780,height=500,toolbar=false,scrollbars=false');
}

function popupbig(page) {
	window.open(page,'popup','width=550,height=370,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');
}

function popupff(page) {
	window.open(page,'popup','width=800,height=700,toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1');
}

function popupsondage(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=700,height=700,left = 200,top = 0');");
}