﻿var popUpWin = 0;
function popUpWindow(URLStr, iLeft, iTop, iWidth, iHeight){
	//if(popUpWin){
	//	if(!popUpWin.closed) popUpWin.close();
	//} 
	//popUpWin = open(URLStr, 'appWin', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0,scrolling=0,width='+iWidth+',height='+iHeight+',left='+iLeft+', top='+iTop+',screenX='+iLeft+',screenY='+iTop+'');
	window.open(URLStr, '_blank', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0,scrolling=0,width='+iWidth+',height='+iHeight+',left='+iLeft+', top='+iTop+',screenX='+iLeft+',screenY='+iTop+'');
}

function launchApplication(key, strTitle, intYear, intIssue, startPage, hotspot){
	if(screen.availWidth > 1024){
		var aw = 1024 - 10;
		var ah = 768 - 35;
	} else {
		var aw = screen.availWidth - 10;
		var ah = screen.availHeight - 35;
	}		
	var tURL = "viewer_s.aspx?gIssue=" + intIssue +"&gTitle=" + strTitle +"&gYear=" + intYear +"&gKey=" + key +"&gAvailWidth=" + aw + "&gAvailHeight=" + ah + "&gInitPage=" + startPage + "&gHotspot=" + hotspot;
	popUpWindow(tURL, 0, 0, aw, ah);
}

window.name = "popPage";
