/*
function anti_event(button) 


    { 	
    var mensa = "The right click function has been disabled!";


        if (navigator.appName == 'Netscape' && button.which != 1) {
        alert(mensa);
        return false;


        } else if (navigator.appName == 'Microsoft Internet Explorer' && event.button != 1) {
        alert(mensa);
        return false;
    }
    return true;
}
// ############# capture events ########
//     ###############
if (navigator.appName == 'Netscape') 
document.captureEvents(Event.MOUSEDOWN);
	
document.onmousedown = anti_event;
// #####################################
// ###############

/*   */
	function docart(frmid, btnname) 
	{
		
	    document.forms[frmid].action = "addtocart.php?mode=" + btnname
	    document.forms[frmid].method = "POST"
	    document.forms[frmid].submit()
	    /*  */
	}
	function Goto(link) 
	{
		
		document.location.href = 'checkout.php';
		/*
	    document.forms[frmid].action = "addtocart.php?mode=" + btnname
	    document.forms[frmid].method = "POST"
	    document.forms[frmid].submit()
	    /*  */
	}
	
	
	function GoPaymate(amt, ref)
	{
		document.forms[0].action = "https://www.paymate.com/PayMate/ExpressPayment?mid=test&amt=" + amt + "&currency=AUD&ref=" + ref  +"&return=http://www.nationalsportspix.com.au/thankyou.php"
	    document.forms[0].method = "POST"
	    document.forms[0].submit()
	}
	
	function ProcessPayment() 
	{
		var frmid=0;
	    document.forms[frmid].action = "pcs_sendorder.php"
	    document.forms[frmid].method = "POST"
	    document.forms[frmid].submit()
	    /*  */
	}
