function GoogleSiteCode(pDomainName) {
	document.write('<hr>');
	document.write('<!-- Search Google -->');
	document.write('<CENTER>');
	document.write('	<FORM ACTION="http://www.google.com/custom" METHOD=GET>');
	document.write('		<P>');
	document.write('		<TABLE BORDER=0 BGCOLOR="#FFFFFF" CELLSPACING=0>');
	document.write('			<TR>');
	document.write('			<TD VALIGN=top> ');
	document.write('				<P>');
	document.write('				<A HREF="http://www.google.com/search">');
	document.write('					<IMG SRC="http://www.google.com/logos/Logo_40wht.gif" ALT="Google" BORDER=0 ALIGN=middle>');
	document.write('				</A>');
	document.write('			</TD>');
	document.write('			<TD VALIGN=top>');
	document.write('				<P>');
	document.write('				<INPUT TYPE=text NAME=q VALUE="" SIZE=31 MAXLENGTH=255>');
	document.write('				<INPUT TYPE=submit NAME=sa VALUE="Google Search">');
	document.write('				<FONT SIZE="-1" FACE="arial,sans-serif">');
	document.write('					<INPUT TYPE=hidden NAME=domains VALUE="'+pDomainName+'">');
	document.write('					<BR>');
	document.write('					<INPUT TYPE=radio NAME=sitesearch VALUE="" CHECKED>');
	document.write('					Search WWW');
	document.write('					<INPUT TYPE=radio NAME=sitesearch VALUE="'+pDomainName+'">');
	document.write('					Search '+pDomainName);
	document.write('				</FONT>');
	document.write('				<BR>');
	document.write('			</TD>');
	document.write('			</TR>');
	document.write('		</TABLE>');
	document.write('	</FORM>');
	document.write('</CENTER>');
	document.write('<!-- Search Google -->');
}

function GoogleSiteSearch() {
	GoogleSiteCode('idigmedia.com');
}