function openWin(href) {
	var checkUrl = document.URL;
	var inUrl = checkUrl.indexOf("popup_enroll.jhtml");
	if (inUrl) {
        var aWindow=window.open(href,"plain","status,width=625,height=400,left=300,top=200","screenX=300","screenY=200");
		aWindow.top.focus();
	}
	else {
		var aWindow=window.open(href,"plain","status,width=625,height=330,left=300,top=200","screenX=300","screenY=200");
		aWindow.top.focus();
	}			  
}