function IO(U, V) {
    var X = !window.XMLHttpRequest ? new ActiveXObject('Microsoft.XMLHTTP') : new XMLHttpRequest();
    X.open(V ? 'PUT' : 'GET', U, false );
    X.setRequestHeader('Content-Type', 'text/html')
    X.send(V ? V : '');
	return X.responseText;
}
function getAccount() {
	var account;
	var lines=IO("/wcsstore/argos/holding_page/holdingPage.properties").split(/\r?\n/g);
	for(var i=0;i<lines.length; i++){
		var nameValue = lines[i].split("=");
		if(nameValue[0]==window.location.host + "/SITE_TAG_S_ACCOUNT"){
 			return nameValue[1];
	 	}
	} 
    return "";
}
