function Util(){
	this.url=[];
	this.cookies=[];
	this.loc;
	
	this.dE=function(_id){
		return document.getElementById(_id);	
	}

	this.windowOpen=function(_link,_name,_props){
		if(!_props){
			_props='width=800,height=600,resizable,menubar,scrollbars,titlebar,status,location,toolbar';
		}
		var _win = window.open(top.getRoot()+'blank.html',_name,_props);					
		_win.focus();
		_win = window.open(_link,_name);					
	}


}
util = new Util();


