window.name="main";

function makePopUp() {	
		selWindow = window.open("", "", "height=600,width=456,top=150,left=150")
		selWindow.document.write("<html><head><title>Notice from United Concordia</title></head><body bgcolor='#FFFF80'>")
		selWindow.document.write("<p><b>Effective August 31, 2003</b></p> ")
		selWindow.document.write("<p>Due to Texas budget restrictions, dental benefits will be eliminated from the CHIP program</p> ")
		selWindow.document.write("<p align='center'><b><a href='javascript:void(0)' onClick='window.close()'><font size='2'>Click here to close window</font></a></b></p></body></html>")

	}	
	
function regMsg() {
	var w = 600;
	var h = 400;

	var features = "width="+w+",height="+h+"top=150,left=150,resizable=yes";

	selwindow = window.open("", "", features);
	//selwindow.resizeTo(456, 180);
	selwindow.document.write("<html><head><title>Message from United Concordia</title>\n");
	selwindow.document.write("<link rel='stylesheet' type='text/css' href='/was/ucciweb/styles/Master.css' title='master'></head>\n");
	selwindow.document.write("<style>body {font-family: Arial, Helvetica, sans-serif; font-size: 12pt;}</style>\n");
	selwindow.document.write("<body bgcolor='#FFFFFF' link='blue' vlink='blue'>\n");
	selwindow.document.write("<h3>Welcome!</h3><h4>United Concordia offers this secure area for our dental providers to access information containing CDT5 codes.</h4>\n");
	selwindow.document.write("<p><b>What information is available?</b></p><ul class='menu3'>");
	selwindow.document.write("<li>&quot;Connection&quot; Newsletters</li>");
	selwindow.document.write("<li>Commercial Business Dental Reference Guide</li><");
	selwindow.document.write("<li>CDT 2005 Procedure Code Information</li>");
	selwindow.document.write("<li>Diagnostic Requirements – View Diagnostic Requirements at a Glance</li>");
	selwindow.document.write("<li>Informational documents containing CDT5 codes</li></ul>");
	selwindow.document.write("<p><b>Already registered in My Patients’ Benefits?</b>  Close this box and click on the document you wish to view.  You will use the same login and password.  If you are not registered, please visit <a href='/was/ucciweb/dentists/what_is_dental_inquiry.jsp' target='main' onClick='window.close()'>My Patients' Benefits</a> to register for access to these secure documents.</p>");
	selwindow.document.write("<p align='center'><a href='javascript:void(0)' onClick='window.close()'><font size='2'>Click here to close window</font></a></p>");
	selwindow.document.write("</body></html>");

}	
	