<!-- 


function confirmAction() { 
return confirm ("If you are sure you want to DELETE, click OK...or...click CANCEL to stop deletion request!"); 
}




var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){

	if(pos=="random"){
		LeftPosition=(screen.width)?Math.floor(Math.random()*((screen.width-w)-75)):100;
		TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){
		LeftPosition=0;
		TopPosition=20}

	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	win=window.open(mypage,myname,settings);
	if(win.focus){win.focus();}}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){

	if(pos=="random"){
		LeftPosition=(screen.width)?Math.floor(Math.random()*((screen.width-w)-75)):100;
		TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){
		LeftPosition=0;
		TopPosition=20}

	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	win=window.open(mypage,myname,settings);
	if(win.focus){win.focus();}}
	


	function Validate_Form()
{
	if (document.SaleForm.strFirst.value.length == 0)
	{
		alert('You must enter your first name to continue.');
		document.SaleForm.strFirst.focus();
		return(false);
	}
	if (document.SaleForm.strLast.value.length == 0)
	{
		alert('You must enter your last name to continue.');
		document.SaleForm.strLast.focus();
		return(false);
	}
	if (document.SaleForm.strEmail.value.length == 0)
	{
		alert('You must enter your e-mail address to continue.');
		document.SaleForm.strEmail.focus();
		return(false);
	}
	if (document.SaleForm.strAddress1.value.length == 0)
	{
		alert('You must enter your address to continue.');
		document.SaleForm.strAddress1.focus();
		return(false);
	}
	if (document.SaleForm.strCity.value.length == 0)
	{
		alert('You must enter your city to continue.');
		document.SaleForm.strCity.focus();
		return(false);
	}
	if (document.SaleForm.strState.value.length == 0)
	{
		alert('You must enter your state to continue.');
		document.SaleForm.strState.focus();
		return(false);
	}
	if (document.SaleForm.strPostalCode.value.length == 0)
	{
		alert('You must enter your zip code to continue.');
		document.SaleForm.strPostalCode.focus();
		return(false);
	}
	if (document.SaleForm.cardnumber.value.length == 0)
	{
		alert('You must enter the name on credit card number to continue.');
		document.SaleForm.cardnumber.focus();
		return(false);
	}
   return (true);
} 

	function Validate_Form2()
{
	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter A CONTACT PERSON to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
	
	if (document.form.strEmailAddress.value.length == 0)
	{
		alert('You must enter AN E-MAIL ADDRESS to continue.');
		document.form.strEmailAddress.focus();
		return(false);
	}
	if (document.form.strRequest.value.length == 0)
	{
		alert('You must enter A REQUEST to continue.');
		document.form.strRequest.focus();
		return(false);
	}
	return (true);
} 
	

function Validate_linkform()
{
	if (document.form.title.value.length == 0)
	{
		alert('You must enter YOUR LINK TITLE to continue.');
		document.form.title.focus();
		return(false);
	}
if (document.form.url.value.length == 0)
	{
		alert('You must enter YOUR LINK URL to continue.');
		document.form.url.focus();
		return(false);
	}
if (document.form.keywords.value.length == 0)
	{
		alert('You must enter YOUR LINK KEYWORDS to continue.');
		document.form.keywords.focus();
		return(false);
	}
if (document.form.description.value.length == 0)
	{
		alert('You must enter YOUR LINK DESCRIPTION to continue.');
		document.form.description.focus();
		return(false);
	}
if (document.form.ourlinklocated.value.length == 0)
	{
		alert('You must tell us WHERE WILL OUR LINK WILL BE LOCATED  to continue.');
		document.form.ourlinklocated.focus();
		return(false);
	}
if (document.form.name.value.length == 0)
	{
		alert('You must enter A CONTACT NAME to continue.');
		document.form.name.focus();
		return(false);
	}
if (document.form.email.value.length == 0)
	{
		alert('You must enter A CONTACT E-MAIL to continue.');
		document.form.email.focus();
		return(false);
	}
	return (true);
} 
		
function Validate_Sub()
{
	if (document.form.strEmailAddress.value.length == 0)
	{
		alert('You must enter AN E-MAIL ADDRESS to continue.');
		document.form.strEmailAddress.focus();
		return(false);
	}
	return (true);
} 
function displayPopup(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=1,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=100,top=100";
popupHandle = open(url, "Upload_Image", properties);

}


//-->



























































