// newWindow.js
function OpenNewWindow(url,winwidth,winheight) {
	NewWindow=window.open(url,'JohnsonPopup','toolbar=no,location=no,directories=no,statusbar=yes,menubar=no,scrollbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+winwidth+',height='+winheight)
//	NewWindow=window.open(url,'_blank','status=yes,toolbar=yes,location=yes,directories=yes,statusbar=yes,menubar=yes,scrollbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+winwidth+',height='+winheight)

}

function OpenNewWindowNamed(url,popupName,winwidth,winheight) {
	NewWindow=window.open(url,popupName,'toolbar=no,location=no,directories=no,statusbar=yes,menubar=no,scrollbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+winwidth+',height='+winheight)
}
