/* POP-UP WINDOW */

function launchWin(theURL,width,height) {
	var winProperties = "copyhistory=yes, directories=no, location=no, menubar=no, noresize, resize=no, scrollbars=yes, status=no, toolbar=no," +
		"width=" + width + ",height=" + height;
	var mainWin = self;
	if( window.popupWin == null ) /* If the window has never been opened */
		popupWin=window.open(theURL,"popWin", winProperties);
	else {
	if( window.popupWin.closed ) /* If the window was open but has been closed */
		popupWin=window.open(theURL,"popupWin", winProperties);
	else /* The window is already open */
		popupWin.location.href = theURL;
	}
		popupWin.opener = mainWin;
		popupWin.focus()
}