function NewWindow(url,name){
	var newWindow = window.open(url,name,'');
	newWindow.opener = window;
	newWindow.focus();
	return false;
}