
document.write('<style type="text/css">'); 
document.write('.help { position: relative; top: -200; left: 0; width: 350; padding: 10 10; font: 9pt ±¼¸²; color: black; background: #000000; border: 1 #ffffff solid; text-align: justify; line-height: 1.2em }');  
document.write('</style>');

function popup(){
document.write('<center><div id="helpDiv" class="help" align="center" style="display: none"><table width="340" border="0"><tr><td width="320"><font face="Arial" size="2" color="#ffffff"><b>Contact Me</b></font></td><td width="20" align="right"><a style="cursor:pointer;" onClick = "helpOff()"><font face="Verdana" size="2" color="#ff0000">X</font></a></td></tr></table><hr width="340" align="left" noshade color=#ffffff>&#160;<a href="mailto:kevin@kevindavisphotography.com"><font face="Arial" size="2" color="#ffffff">kevin@kevindavisphotography.com</font></a><br><br/><font face="Arial" size="2" color="#ffffff">571.247.1202</font><br/></div><br/></center>');
}

function helpOn() {
	helpDiv.style.display = "";
}

function helpOff() {
	helpDiv.style.display = "none";
}