//*********************************************************************************
// Scripts coded and deleoped by artMedias. All rights reserved
//*********************************************************************************
function checkBrowser(){ this.ver=navigator.appVersion; this.dom=document.getElementById?1:0; this.op=(navigator.userAgent.indexOf("Opera")!=-1)?1:0
this.moz1=(navigator.userAgent.indexOf("Mozilla")!=-1&&!this.op)?1:0; this.ie4=(document.all && !this.dom && !this.op)?1:0; this.ie=(document.all && !this.op)?1:0
this.ns6=(!this.ie && this.dom && parseInt(this.ver)>= 5)?1:0; this.ns7=(!this.ie && this.dom && parseInt(this.ver)>= 7)?1:0}
var bw = new checkBrowser();
function getObj(id){ if (bw.ie4) return document.all[id]; else return document.getElementById(id) }
function printPage(){	
	document.printThis.docTitle.value=document.title;
	document.printThis.docCont.value=getObj('mainCon').innerHTML;
	MM_openBrWindow('','printPg','menubar=yes,scrollbars=yes,resizable=yes','680','590','false');
	document.printThis.submit();
}
function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0	
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
function validemail(str){	
	if (str.lastIndexOf('@')==-1 || str.search(' ')!=-1){  
  return false;   
 } else return true;
}
