    function ForceWindow ()
    {
        this.r = document.documentElement;
        this.f = document.createElement("FORM");
        this.f.target = "_blank";
        this.f.method = "post";
        this.r.insertBefore(this.f, this.r.childNodes[0]);
    }
    ForceWindow.prototype.open = function (sUrl)
    {
        this.f.action = sUrl;
        this.f.submit();
    }
    
    
    function SetDefaultText(obj,txt){
	if(obj.value==""){
		obj.value = txt;
		obj.style.color = '#cccccc';
	}
}
function ClearDefaultText(obj,txt){
	if(obj.value==txt){
		obj.value = '';
		obj.style.color = '#000000';
	}
}
