document.write('<link href="/ad/ad.css" rel="styleSheet" type="text/css">');
document.write('<form name="frmDomainSearch" action="http://www.domainprocessor.com/whois/whois.asp" method="get" target="DP">');
document.write('<DIV id="outerDiv" style="WIDTH: 100%; POSITION: absolute; TOP: 0px;LEFT: 0px;" align=right>');
document.write('<DIV class="window" id="mainDiv" style="WIDTH: 300px;">');
document.write('	<DIV class=titleBar>');
document.write('	<SPAN id="titleBarText" class=titleBarText>DomainProcessor.com</SPAN>');
document.write('	<IMG class=titleBarButtons alt="" src="/ad/buttons.gif" useMap=#myMap>');
document.write('	<MAP id=myMap name=myMap>');
document.write('	<AREA title=Minimize onclick="hide(\'contentDiv\');return false;" shape=RECT alt="" coords="0,0,15,13" href="">');
document.write('	<AREA title=Restore onclick="show(\'contentDiv\');return false;" shape=RECT alt="" coords="16,0,31,13" href="">');
document.write('	<AREA title=Close onclick="hide(\'mainDiv\');return false;" shape=RECT alt="" coords="34,0,49,13" href="">');
document.write('	</MAP>');
document.write('	</DIV>');
document.write('	<DIV align="center" class=clientArea id=contentDiv style="height:110px;" onMouseover="show(\'contentDiv\');" onMouseout="autoHide(60000);">');
document.write('	www<b>.</b> <input name="dnquery" class="sInput" onChange="show(\'contentDiv\');" size=20>');
document.write('	<input type="submit" value="Search" class="sInput">');
document.write('	<a href="http://www.DomainProcessor.com" target="DP"><IMG src="/ad/twentyboxt.gif" border=0></a>');
document.write('	</DIV>');
document.write('</DIV>');
document.write('</DIV>');
document.write('</form>');

var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);

var hideID=0;

function show(id){
	// Netscape 4
	if(ns4){
		document.layers[id].display = "";
	}
	// Explorer 4
	else if(ie4){
		document.all[id].style.display = "";
	}
	// W3C - Explorer 5+ and Netscape 6+
	else if(ie5 || ns6){
		document.getElementById(id).style.display = "";
	}
    if (hideID>0) {
        window.clearTimeout(hideID);
        hideID = 0;
    }
    changeWidth('mainDiv',300);
}

function hide(id){
	// Netscape 4
	if(ns4){
		document.layers[id].display = "none";
	}
	// Explorer 4
	else if(ie4){
		document.all[id].style.display = "none";
	}
	// W3C - Explorer 5+ and Netscape 6+
	else if(ie5 || ns6){
		document.getElementById(id).style.display = "none";
	}
	hideID = 0;
	
	changeWidth('mainDiv',190);
}

function autoHide(hTime){
    if (hideID==0) {
        hideID = window.setTimeout("hide('contentDiv')", hTime);
    }
}

function changeWidth(id, cWidth) {
	if(ie5 || ns6){
		document.getElementById(id).style.width = cWidth;
	}	
}

autoHide(3000);


