// show remote window
function popup(path,width,height)
{
	newWindow = window.open(path,"remote","width="+width+",height="+height+",scrollbars=1,menubar=0,location=0,resizeable=0,toolbar=0,screenx=100,left=100,top=100,screeny=100");
	if (newWindow.opener == null) newWindow.opener=top;
	newWindow.focus();
}
// hide email address
function writeMailAddress(user, domain, tld)
{ document.write(user + '@' + domain + '.' + tld); }
// hide email address link
function writeMailAddressLink(user, domain, tld)
{ document.write('<a href="mailto:'); writeMailAddress(user, domain, tld); document.write('">'); writeMailAddress(user, domain, tld); document.write('</a>'); }
// submitted
var formSubmitted=0;
function ControlDoubleClick()
{
	state = (formSubmitted==0);
	formSubmitted=1;
	return state;
}
// menuing system
function startList(){ //v1.1.0.2 by PVII-www.projectseven.com
 if(navigator.appVersion.indexOf("MSIE")==-1){return;}
 var i,k,g,lg,r=/\s*p7hvr/,nn='',c,cs='p7hvr',bv='p7menubar';
 for(i=0;i<10;i++){g=document.getElementById(bv+nn);if(g){
 lg=g.getElementsByTagName("LI");if(lg){for(k=0;k<lg.length;k++){
 lg[k].onmouseover=function(){c=this.className;cl=(c)?c+' '+cs:cs;
 this.className=cl;};lg[k].onmouseout=function(){c=this.className;
 this.className=(c)?c.replace(r,''):'';};}}}nn=i+1;}
}