// JavaScript Document
function popUp(url,width,height,resize,top,left)
{
	if(!top)
		var top=((screen.height)/2)-(height/2);
	if(!left)
		var left=((screen.width)/2)-(width/2);
	var params='toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0';	
	if(resize==1)
		var params='toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0';
	window.open(url,'','top='+top+', left='+left+', height='+height+', width='+width+','+params);
}
