
	function emailLink()
	{
		var h = "Illinoiswatches.com";
		var u = "Fred";
		var lt = u + "@" + h;
		document.write("<a href=" + "mail" + "to:" + u + "@" + h + ">" + lt + "</a>")
	}


	/* 
Javascript Browser Sniff 1.0
Jim Cummins - http://www.conxiondesigns.com
*/
var isIE = false;
var isOther = false;
var isNS4 = false;
var isNS6 = false;
if(document.getElementById)
{
	if(!document.all)
	{
		isNS6=true;
	}
	if(document.all)
	{
		isIE=true;
	}
}
else
{
	if(document.layers)
	{
		isNS4=true;
	}
	else
	{
		isOther=true;
	}
}

/*
End of Browser Sniff 1.0
*/

/*
Access Layer Style Properties
Jim Cummins - http://www.conxiondesigns.com
Required components:  Javascript Browser Sniff 1.0
*/
function aLs(layerID)
{
var returnLayer;
	if(isIE)
	{
		returnLayer = eval("document.all." + layerID + ".style");
	}
	if(isNS6)
	{
		returnLayer = eval("document.getElementById('" + layerID + "').style");
	}
	if(isNS4)
	{
		returnLayer = eval("document." + layerID);
	}
	if(isOther)
	{
		returnLayer = "null";
		alert("-[Error]-\nDue to your browser you will probably not\nbe able to view all of the following page\nas it was designed to be viewed. We regret\nthis error sincerely.");
	}
return returnLayer;
}
/*
End of Accessing Layer Style Properties
*/


/*
HideShow 1.0
Jim Cummins - http://www.conxiondesigns.com
Required components:  Accessing Layer Style Properties (and Req. Comp.)
*/
function HideShow(ID)
{
	if((aLs(ID).visibility == "visible") || (aLs(ID).visibility == ""))
	{
		aLs(ID).visibility = "hidden";
	}
	else if(aLs(ID).visibility == "hidden")
	{
		aLs(ID).visibility = "visible";
	}
}
/*
End of HideShow 1.0
*/
function show(object)
{
	HideShow(object);
}

function hide(object)
{
	HideShow(object);
}

	
	/*
	Drag and Drop Script-
	© Dynamic Drive (www.dynamicdrive.com)
	For full source code, installation instructions,
	100's more DHTML scripts, and Terms Of
	Use, visit dynamicdrive.com
	*/
	
	var dragapproved=false
	var z,x,y
	function move(){
	if (event.button==1&&dragapproved){
	z.style.pixelLeft=temp1+event.clientX-x
	z.style.pixelTop=temp2+event.clientY-y-20
	return false
	}
	}
	function drags(){
	if (!document.all)
	return
	if (event.srcElement.className=="drag"){
	dragapproved=true
	z=event.srcElement
	temp1=z.style.pixelLeft
	temp2=z.style.pixelTop
	x=event.clientX
	y=event.clientY
	document.onmousemove=move
	}
	}
	document.onmousedown=drags
	document.onmouseup=new Function("dragapproved=false")



function MM_reloadPage(init) {  //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);