// JavaScript Document

	function openLoveWindow() {
		window.open("lovewindow.php","lovewindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,width=640,height=512,left = 320,top = 192");
	}
	
	function openStrangerWindow() {
		window.open("strangerwindow.php","strangerwindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,width=640,height=512,left = 320,top = 192");
	}
	
	function openGripWindow() {
		window.open("gripwindow.php","gripwindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,width=640,height=512,left = 320,top = 192");
	}
	
	function checkOut(btn){
		var sid;
		var productid;
		var qty;
		var buttonClicked = btn.name;
		switch (buttonClicked) {
			case "love":
				sid = "53197";
				productid = "6";
				qty = document.getElementById("loveQty").value;
				break;
			case "stranger":
				sid = "53197";
				productid = "2";
				qty = document.getElementById("strangerQty").value;
				break;	
			case "grips":
				sid = "53197";
				productid = "3";
				qty = document.getElementById("gripsQty").value;
				break;
			default:
				break;
		}
		
		document.checkout.action="https://www.2checkout.com/2co/buyer/purchase?"
		+ "sid=53197&quantity=" + qty + "&product_id=" + productid;
		document.checkout.submit(); 
	}

	function openSampleWindow() {
		window.open("samplewindow.php","samplewindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,resizable=1,width=640,height=512,left = 320,top = 192");
	}
