


function largerImage(imgurl, w, h, iw)
{
	if (!w) w = 600;
	if (!h) h = 600;
	if (!iw) iw = 500;	// image width
   lswin = window.open("","pic","width=" + w + ",height=" + h + ",top=1,resizable=yes,scrollbars=yes");
   lswin.document.writeln('<html><body bgcolor="black" oncontextmenu="return false;"><center>');
   lswin.document.writeln('<head><META HTTP-EQUIV="imagetoolbar" CONTENT="no"></head>');
   lswin.document.writeln('<img src=' + imgurl + ' width=' + iw + ' >');
   lswin.document.writeln('</center></body></html>')
   lswin.document.close();
}

function writeCopyright()
{
	var yr = new Date().getFullYear();
	document.write('<br />Copyright &copy;' + yr + ' Lee Stoliar');
}

function fadetext()
{ 

	if (red < 172) 	
	{ 
		red+=9; 
	}
	
	if (grn < 55) 
	{ 
		grn+=3; 
	}
	
	if (blu < 2) 
	{ 
		blu+=1; 
	}
		
	document.getElementById("introtext").style.color="rgb("+red+","+grn+","+blu+")";
		
	if (red < 172 || grn < 55 || blu < 2)		
	{
		setTimeout("fadetext()",100); 		
	}
	else window.location = "home.htm";
}


function getE(myU, myD, color)
{
	var e1 = "a href=";var e2 = "mai" + "lto";var e3 = "&#64;";
	document.write("<" + e1);document.write('"' + e2);document.write(':');document.write(myU + e3 + myD);
	document.write('"');document.write(">");
	document.write('<span style="color:#' + color + ';">');
	document.write(myU + e3 + myD);
	document.write('</span>');
	document.write("</a>");
}
