
var win1Open = null
var win2Open = null
var win3Open = null
function openPopUp(windowURL, windowName, windowWidth, windowHeight){
	  var winHandle = window.open(windowURL,windowName,"scrollbars=yes,resizable=yes,width=" + windowWidth + ",height=" + windowHeight)
	  return winHandle
}
	  
function winClose(){       
	  if(win1Open != null) win1Open.close() 
	  if(win2Open != null) win2Open.close() 
	  if(win3Open != null) win3Open.close() 
}


function openPopUpWindow(){}  

	
function openPopUp(windowURL, windowName, windowWidth, windowHeight){
	  var winHandle = window.open(windowURL,windowName,"scrollbars=yes,resizable=yes,width=" + windowWidth + ",height=" + windowHeight)
	  if(winHandle != null) winHandle.focus() 
	  return winHandle
}


function sendme() 
{ 
    window.open("","myNewWin","width=700,height=500,toolbar=0,scrollbars=yes,resizable=yes"); 
} 


function setMsg(msg) {
		window.status = msg
		return true
}

