function select_option_one(pID) {

var pID = pID;
var a = document.forms.optionForm.option1.value;
var b = a.length;

if (b > 0)
	{
	location.href = '/products/product/?pID='+pID+'\&oOne='+a+'\&oos=1';
	} 

}


function select_option_two(pID, oOne) {

var pID = pID;
var oOne = oOne;
var a = document.forms.optionForm.option2.value;
var b = a.length;

if (b > 0)
	{
	location.href = '/products/product/?pID='+pID+'\&oOne='+oOne+'\&SKU='+a+'\&oos=1';
	} 

}


function get_sku_from_option_one(pID) {

var pID = pID;
var a = document.forms.optionForm.option1.value;
var b = a.length;

if (b > 0)
	{
	location.href = '/products/product/?pID='+pID+'\&oOne='+a+'\&fs=1';
	} 

}


function largeProductImage(whichImg,ImgWidth) {
var a = whichImg;
var b = ImgWidth;
largePrIm.src = a;
largePrIm.width = b;
}


function checkout() {
document.forms.basketForm.action = 'https://www.paypal.com/cgi-bin/webscr';
document.forms.basketForm.submit();
}

