/*====================================================================================================
         Project : k-12jobs.com Web Site 2001
      Programmer : Alvaro Girata
     Access Code : ahgl13rfod
      Start Date : October 23, 2001
       File Name : General.js
   File Location : /www/home/bussines3/k12jobs/Genral
     Description : Holds all of the JavaScripts neccessaries generally.
     Type Design : JavaScript Code
         Version : 1.00
        Modified : October 23, 2001
            Time : 3:10 p.m.
====================================================================================================*/
//	
//====================================================================================================
	function emailUs(Option)
		{
		//---------------------------------------------------------------------- 
		var x = (800 - 540)/2;
		var y = (600 - 360)/2;
		var size = 'left=' + x + ',top=' + y + ',width=540,height=360,scrollbars=1';
		var path = (/Registration/i.test(document.location))?"../":"";
		var emailUs = path + "../EmailUs/EmailUs.cgi?To=" + Option + "@k12jobs.com";
		window.open(emailUs, "emailUs", size);
		//---------------------------------------------------------------------- 
		}
//====================================================================================================
//	
//====================================================================================================
