//*-----------javascript-----------*//

function jump(addy){window.location.href=addy;}

//* style.color only affects non-link < a > colors *//
//* see aw.css for current link colors definitions *//
function onit(ref){
	     ref.style.cursor='hand';
		 ref.style.color='#222222';
         ref.style.backgroundColor='#ffffff';}
         
function offit(ref){
	     ref.style.color='#dddddd';
		 ref.style.backgroundColor='transparent'; }

//* path and some params passed *// 
function openWindow(myURL, w, h) {
      popupWin = window.open(myURL,"", 
	  'toolbar=no, scrollbars=no, resizable=no, width=' + w + ',height=' + h);
       window.name = 'opener'; }

//* this may not work in some cirsumstances
function CloseWindow(WindowName) {
	if(WindowName != null && !WindowName.closed) 
	WindowName.close();}

function mailto(){
	myWin = window.open("pages/commomn/mailpage.htm","",
	'toolbar=no,scrollbars=yes, ' +
	'width=550,height=400,screenx=0,screeny=0,left=30,top=30');}		
