// JavaScript Document

function popUp(URL,WindowName,resizable,scrollbars,width,height){
	window.open (URL,WindowName,"tollbar=0,resizable="+resizable+",scrollbars="+scrollbars+",width="+width+",height="+height+",left="+(screen.width-width)/2+",top="+(screen.height-height)/2+"");
}