// JavaScript Document
	//WHAT IS THIS FOR?????????????????????
	function popup(mylink, windowname){
		if (! window.focus)return true;
			var href;
		if (typeof(mylink) == 'string')
			  href=mylink;
		else
		   href=mylink.href;
	
		window.open(href, windowname, 'width=400,height=370,scrollbars=yes');
		return false;
	}
	
	//TEST FUNCTION
	//this will add the product to the shopping cart
	function add_to_cart( product_name ){
		
		var msg = product_name +" has been added to your shopping cart.\n\n" +"Do you want to continue shopping?";
		
		var answer = confirm( msg ); //need this to be YES/NO
		if (answer){
			window.location = "shoppingcart.php";
		}
		else{
		}

	}
	
