
// **** START NOTICE WINDOW **** //
var wndDDNotice = null;
function DisplayNotice(intWidth,intHeight,strUrl) {
	var intScWidth,intScHeight,intXPos,intYPos;
	intScWidth = screen.availWidth;
	intScHeight = screen.availHeight;
	intXPos = ((intScWidth - intWidth) / 2);
	intYPos = ((intScHeight - intHeight) / 2);
	if (wndDDNotice != null) { // if the window has been created at some point 
		if (wndDDNotice.closed) { // if the window has been closed by the kill icon
			wndDDNotice=null;
		}
		else {
			// close the window
			wndDDNotice.close();
			wndDDNotice=null;
		} // endif
	} // endif
	//alert(strUrl);
	wndDDNotice=null;  
	wndDDNotice=window.open(strUrl,"DDNoticeRoot","toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=" + intWidth + ",height=" + intHeight + ",screenX=" + intXPos + ",screenY=" + intYPos + ",left=" + intXPos + ",top=" + intYPos)
	wndDDNotice.focus();
}
// **** END NOTICE WINDOW **** //
