//
// Copyright (c) 2007 by Powers Enterprise LLC
// 
// 


function submitform()
{
  	document.goForward.submit();
}

function doSearch()
{
  	document.goSearch.submit();
}

function doHome()
{
  	document.goHome.submit();
}

function doProfile()
{
  	document.goProfile.submit();
}

function doMessage()
{
  	document.goMessage.submit();
}

function doAccount()
{
  	document.goAccount.submit();
}   

function doProfileView(theNumber)
{
	document.goProfileView.profileNumber.value = theNumber;
  	document.goProfileView.submit();
} 


function doSearchMore()
{
  	document.goSearchMore.submit();
}  



function doContact(path) 
 {    
     //var path = "http://www.ForEveryLove.com/contact/";
    
     var myWin = window.open("", "Contact", "top=20, left=20, scrollbars=yes, resizable=yes, height=600, width=800");      
      
      myWin.focus();        
      myWin.location.replace(path); 
       
}


 function doMail()
{
  	document.goMail.submit();
}


 function doPreviousPage()
{
  	document.goPreviousPage.submit();
}

 function doNextPage()
{
  	document.goNextPage.submit();
}


function doCheckBoxPrintout()
{
  	document.goCheckBoxPrintout.submit();
}

