<!--
// Query which server this website is running on, then redirect to SSL server to open credit card submission page

function redirectLink() 
{	
    if(window.location.hostname=="server2")
	{	// local web site  
		top.location.href="../pages/order_payment.htm";
	}
	else
	{	// online web site - SECURE SERVER
	    top.location.href="https://swecheck.qnetau.com/pages/order_payment.htm";
	}  
}


//-->
