<!--
// Query which server this website is running on, then redirect to appropriate web page

function redirectLink() 
{	// Decide which server to display payment page
    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";
	}  
}


function MapLink() 
{	// Decide which map to display
  if(window.location.hostname=="server2")
	{	// local web site - show Static maps  
		top.location.href="../pages/contact_static_maps.htm";
	}
	else
	{	// online web site - show Google maps
	    top.location.href="../pages/contact_google_maps.htm";
	}  
}

//-->

