function openDetail(url,width,height){
	var url;
	var width;
	var height;
	
	var new_win;
	
	
	width = parseInt(width);
	
	height = parseInt(height);
	
	
	win_detail = "toolbar=0,location=0,directories=0,width=" + width + ",height=" + height + ",scrollbars=0, resizable=1";
	
	nw_win= window.open('','',win_detail);
	nw_win.document.open();
	nw_win.location.href=url;

}

