﻿function openWants(){
	var intWidth = screen.availWidth;
	var intHeight = screen.availHeight;
	var strURL = "wantsRecord.aspx";
	var strF = "top=0,left=0,width=" + intWidth + ",height=" + intHeight + ",toolbar=no,menubar=no,location=no,scrollbars=yes,directories=no,resizable=yes";
	window.open(strURL, "wantsRecordLogin", strF);
	return false;
}

function wantsOver(){
	window.event.srcElement.style.color="#FF9900";
	window.event.srcElement.style.cursor="hand";
}

function wantsOut(){
	window.event.srcElement.style.color="#008080";
	window.event.srcElement.style.cursor="default";
}