// JavaScript Document
//Popup function
// Link example:
//<a href="pageLink.asp" onclick="popUp(this.href,'console',600,600,'windowName',150,100);return false;" target="_blank">This is my link</a>
var newWin = null;
function popUp(strURL, strType, strHeight, strWidth, strName, leftValue, topValue) {
if (newWin != null && !newWin.closed)
	newWin.close();  
	var strOptions="";
	if (strType=="console")    
	strOptions="resizable,scrollbars,left="+leftValue+",top="+topValue+",height="+
		strHeight+",width="+strWidth;  
	if (strType=="consoleScroll")    
	strOptions="resizable,scrollbars,left="+leftValue+",top="+topValue+",height="+
		strHeight+",width="+strWidth; 
	if (strType=="fixed")
		strOptions="status,left="+leftValue+",top="+topValue+",height="+      
			strHeight+",width="+strWidth;  
	if (strType=="elastic")
		strOptions="toolbar,menubar,scrollbars,"+
			"resizable,left="+leftValue+",top="+topValue+",location,height="+      
			strHeight+",width="+strWidth;
	newWin = window.open(strURL, strName, strOptions);  
	newWin.focus();
}
//-->
