// Terrestra Shop related functions

// PAYPAL related scripts
// add product to shopping cart 
function submitAddToCartForm(strProductID){
	var formName = "_xclick" + strProductID;
	document.forms[formName].submit();
}
// view shopping cart
function submitViewCartForm(){
	document._xclick.submit();
}

// open product detail
function productDetail(id) {
	openWindow('product_detail.php?id='+id,'_blank','menubar=no,toolbar=no,locationbar=no,scrollbars=no,resizable=yes,width=540,height=572')
}

// show color options
function showOptions(file, w, h) {
    var w = (w == null) ? "488" : w; // default window width
    var h = (h == null) ? "208" : h; // default window height
	openWindow('../images/products/'+file,'_blank','menubar=no,toolbar=no,scrollbars=no,resizable=no,width='+w+',height='+h)
}
