//OPEN POPUP WINDOW
function openWindow(theURL, windowName, width, height) {

	popupWin = window.open(theURL, windowName, 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=' + width + ',height=' + height);
	
	popupWin.focus();

}