
function popUp(URL, width, height) {
	try {
		popup_window.close();
	} catch(e){}
	popup_window = window.open(URL, "_popover", "status=yes,location=yes,menubar=yes,toolbar=yes,directories=no,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + ",screenX=100,screenY=100");
	window.onerror = null;
}

function popSurvey( width, height, resizable, scrollbars ) {
	setTimeout("startSurvey("+width+","+height+","+resizable+","+scrollbars+")", 1000);
}

function startSurvey( width, height, resizable, scrollbars ) {
	try {
		newWindow.close(); 
	} catch(e) {}
	URL = "popups/pop_survey.jsp";
	newWindow=window.open( URL,'page',"status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=" + resizable + ",scrollbars=" + scrollbars + ",width=" + width + ",height=" + height + ",left=400,top=100");
	window.onerror = null;
}

function popUpNoResize(URL, width, height) {
	try {
		popup_window.close();
	} catch(e) {}
	popup_window = window.open(URL, "_popover", "status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=yes,width=" + width + ",height=" + height + ",screenX=100,screenY=100");
	window.onerror = null;
}

function doProcessing() {
	document.getElementById('submit-btn').className = 'thide';
	document.getElementById('processing').className = 'tshow';
	setLeavingFlagToFalse();
}  
 function openWin1(page) { 

    var options = "scrollbars=yes, width=780, height=700";
    var win = window.open(page, 'MyWin', options);
    if (window.focus) {
        win.focus()
    }

  }

function heightdecider()
{
    document.getElementById("closeWindow2").style.top=document.getElementById("programsContentBox").offsetHeight+10;
}



