// JavaScript Document

function emailafriend(formname)
{
if (screen)
{
var lngLeftPos = (screen.availWidth/2) - 180
var lngTopPos = (screen.availHeight/2) - 240

var thedate = new Date( );
var d = thedate.getDay( );
var h = thedate.getHours( );
var m = thedate.getMinutes( );
var s = thedate.getSeconds();
var windowsname = "AdminForm" + d + "a" + h + "b" + m + "c" + s
}
var paramsAdmin = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=310,height=495,left="+lngLeftPos+",top="+lngTopPos
var AdminForm = window.open(formname, windowsname, paramsAdmin);
if (parseInt(navigator.appVersion) >= 4){AdminForm.focus();}
}