function openWindow5(url){
	
	window.name = 'main';
	//w = width
	//h = height
	//s = scrollbars
	leftW = (screen.width-700)/2;
	topH = (screen.height-300)/2;
		features = "titlebar=0,location=0,directories=0,menubar=0,scrollbars=1,status=0,toolbar=0,resizable=1,height=300,width=700,left="+leftW+",top="+topH
		winpops = window.open(url,"remote",features);
}
		 
function openWindow6(url){
	window.name = 'main';
	//w = width
	//h = height
	//s = scrollbars
	leftW = (screen.width-760)/2;
	topH = (screen.height-300)/2;
		features = "titlebar=10,location=1,directories=0,menubar=1,scrollbars=1,status=0,toolbar=1,resizable=1,height=300,width=700,left="+leftW+",top="+topH
		winpops = window.open(url,"remote",features);
}

function popup(url,w,h,s){
	window.name = 'main';
	//w = width
	//h = height
	//s = scrollbars
	//before 11-21-06: toolbar = 1 , menubar = 1, resizeable=1, location =1
	leftW = (screen.width-760)/2;
	topH = (screen.height-300)/2;
		features = "titlebar=10,location=0,directories=0,menubar=0,scrollbars=0,status="+s+",toolbar=0,resizable=0,height="+h+",width="+w+",left="+leftW+",top="+topH
		winpops = window.open(url,"remote",features);
}