// JavaScript Document
/* --- top menu rollover ---- */
function roll_over(img_name, img_src){
	document[img_name].src = img_src;
}
/* --- Send to friend ---- */
/*
if(document.getElementById('hidSendToFriendPageID')!=null){
    if(window.location.href.lastIndexOf('pageID=')>-1){
        var _url = window.location.href.substr(window.location.href.lastIndexOf('pageID=')+7);
        document.getElementById('hidSendToFriendPageID').value = _url;
        document.getElementById('Message').value = 'Visit this Site: \n' + 'url: ' + document.getElementById('hidSiteUrl').value;
    }
}
*/
function check(){
	str = ''+window.location;
	var strInd =str.indexOf("?pageID");
	strInd = strInd+8;
	var strLngth = str.substr().length;
	var strDiff = strLngth-strInd;
	var strId = str.substr(strInd,strDiff);
//	alert(strId);
//	http://fis.xmgulfstaging.com/output/?pageID=115
	var strAddInd = str.indexOf("output");
	var strAddLngth = str.substr().length;
	var strAddId = str.substr(0,strAddInd);
	if(str.indexOf(224)!=-1){
		document.getElementById('Message').value = 'Visit this Site: \n' + 'url: ' + strAddId+"output/page"+strId+".asp";
	}else if(str.indexOf(225)!=-1){
		document.getElementById('Message').value = 'Visit this Site: \n' + 'url: ' + strAddId+"output/page"+strId+".asp";
	}
	document.getElementById('hidSendToFriendPageID').value =strId
}
//window.onload=check;