function SetReturnURL(txtReturnURLID)
{
	obj = document.getElementById(txtReturnURLID);
	obj.value = window.location;
}

function Redirect(returnURL)
{
	window.location = returnURL;	
}
