/*     OPEN WINDOW     */

function DW1(dwURL) {
popupWin = window.open(dwURL, 'DW1', 'scrollbars,resizable=yes,width=550,height=520,left=25,top=25');
window.top.name = 'opener';
}

function External(dwURL) {
popupWin = window.open(dwURL, 'DW1', 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=700,height=600,left=25,top=25');
window.top.name = 'opener';
}

// This funtion is to support navigation functions defined above

onload=function(){
	window.focus();
}



//External Popup window script
function openExternalSite() {
	var winLoc = window.location.href;
	var folderLgt = winLoc.length;
	var lastIndex = winLoc.lastIndexOf("?");
	var getVal = winLoc.slice(lastIndex+1, folderLgt);
	window.location.href = getVal
}


