// JavaScript Document
function popup(URL,x,y) {
	features = "titlebar=no,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=1,resizable=0,fullscreen=0,width="+x+",height="+y+",left="+((screen.width/2) - (x/2))+",top="+((screen.height/2) - (y/2));
	window.open(URL,"SMALLWINDOW",features);
}