// JavaScript Document
function postRequest(strURL)
	{
		var StrSplit= new Array();
		StrSplit=strURL.split("||");
		var xmlHttp;
		if(window.XMLHttpRequest)
		{ // For Mozilla, Safari, ...
			var xmlHttp = new XMLHttpRequest();
		}
		else if(window.ActiveXObject){ // For Internet Explorer
			var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
	
	xmlHttp.open('POST', StrSplit[0], true);
	xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	xmlHttp.onreadystatechange = function()
	{
		if (xmlHttp.readyState == 4)
		{
			if(StrSplit[1]=='view'){
				updateview(xmlHttp.responseText);
			}
			
		}
	}
	
	xmlHttp.send(strURL);
	}

