function winPopup(page,w,h,sta) {
var tmp;

if(sta == 1) {
	tmp='yes';
}
else {
	tmp='no';
}

newwindow = window.open(page,'myWindow',"scrollbars=yes,status="+tmp+",resize=yes,width="+w+",height="+h);
if (window.focus) newwindow.focus();
}

