function windowPopup(location, height, width, resizable, toolbar, scrollbar) {
 	win1=window.open(location, "PopupWindow", "height="+height+", width="+width+",resizable="+resizable+",toolbar="+toolbar+",scrollbars="+scrollbar);
	win1.focus();
} 

function windowPopup2(location, height, width, resizable, toolbar, scrollbar) {
 	win1=window.open(location, "PopupWindow2", "height="+height+", width="+width+",resizable="+resizable+",toolbar="+toolbar+",scrollbars="+scrollbar);
	win1.focus();
} 
