
/*
*******************************************************************
This script will redirect to Order form or Qutation pages for each site.  
If you have any problems, Please talk to WAN
********************************************************************/
var referrer = document.referrer
var strLocation 
var strOrderForm
var strRequest

if (referrer != '') {
	var href = document.location.href;

	if (((href.indexOf("Order-Form") > 0) || (href.indexOf("Request-a-Quotation") > 0)) ) {

		if (referrer.indexOf("krost.com.au") > 0) {
			strLocation = 'http://www.krost.com.au';
			strOrderForm = '/Order-Form/default.aspx';
			strRequest = '/Request-a-Quotation/default.aspx';
		}

		if (referrer.indexOf("klein.com.au") > 0) {

			strLocation = 'http://www.klein.com.au';
			strOrderForm = '/Order-Form1/default.aspx';
			strRequest = '/Request-a-Quotation-Form/default.aspx';
		}

		//if (referrer.indexOf("oo.elcom.com.au") > 0) {
	//		strLocation = 'http://oo.elcom.com.au'
	//		strOrderForm = '/Order-Form2/default.aspx';
	//		strRequest = '/Request-a-Quotation-Form/default.aspx';
	//	}

		if (referrer.indexOf("furniture.com.au") > 0) {
			
			strLocation = 'http://www.officeorg-furniture.com.au';
			strOrderForm = '/Order-Form2/default.aspx';
			strRequest = '/Request-a-Quotation-Form/default.aspx';
		}
		if (href.indexOf("/Order-Form") > 0) {

			document.location.href=strLocation + strOrderForm 
			return;
		}
		else {
			document.location.href=strLocation + strRequest; 
			return;
		}
	}
	
	
}
