function DetailView(URL, Width, Height){
	
	Width = Width - 4;
	Height = Height - 4;
	var Left = (window.screen.availWidth - Width) /2;
	var Top = (window.screen.availHeight - Height) /2;
	
	newwin = window.open(URL, "DetailView", "dependent=yes, scrollbars=no, resizable=yes, width=" + Width + ", height=" + Height + ", top=" + Top +", left=" + Left);	
}

