/*

	All functions copyright 2006
	Grande Communications Networks, Inc.
	
	Author: Ben Stendahl
			ben.stendahl@corp.grandecom.net

*/

function showAccount() {
	layer = document.getElementById('lyrPay');
	layer.style.display = "block";
	
}

function hideAccount() {
	layer = document.getElementById('lyrPay');
	layer.style.display = "none";

}

document.writeln('<div id="lyrPay" style="position:absolute; display: none; width:230px; height:130px; padding: 10px; z-index:1; visibility: none; left: 50%; top: 80px; background-image: url(http://www.grandecom.net/img/net-account-back.gif); layer-background-image: url(http://www.grandecom.net/img/net-account-back.gif); background-repeat: no-repeat; border: 1px none #000000; font-family: Arial, Helvetica, sans-serif; font-size: 10pt;">'
					+ '<p align="center" style="text-align: center; font-size: 10pt; display: block; color: #000000;">Please select the number your account begins with. '
					  + '<form action="http://www.grandecom.net/site-account.php" method="post" enctype="application/x-www-form-urlencoded" name="frmAccount" id="frmAccount">'
						+ '<div align="center" style="color: #000000">86 <input name="rbAccount" type="radio" value="86" checked="checked" style="margin-right: 25px; " />'
						+ '1  <input name="rbAccount" type="radio" value="1" /><br />'
						+ '<input type="submit" name="Submit" value="Go" style="width: 60px; height: 22px; " /></div>'
					  + '</form></p> '
					 + '<p align="center"><a href="javascript:;" onclick="hideAccount();">close this</a></p>'
					+ '</div>');
