//Javascript functions that are used on the home pages (index.asp files of each directory)

/*
fnGetShipping is used to control the show or hide the shipping info section.  if the Shipping Information Checkbox is checked, the Shipping 
Section will not be displayed.  if the Shipping Information Checkbox is unchecked, the Shipping Section will be displayed
*/
function fnGetShipping()
{	
	if(document.billing.same.checked == true)
		document.getElementById("tblShipping").style.display="none"        
	else
		document.getElementById("tblShipping").style.display="block"            
}

/*
popUpCIC is used to create the Credit Card Validation Pop Up.
*/
function popUpCIC(url) 
{
CICWin = window.open(url,'win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=450');
self.name = "mainWin";
}

/*
popUp is used for generating the Privacy Policy pop up. 
*/
function popUp(url) 
{
Win = window.open(url,'win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=795,height=500');
self.name = "mainWin";
}




