function timedView(url, name, w, h, t){	
	var popupWin = quickView2(url, name, w, h)
	window.setTimeout("popupWin.close();", t);	
}

function quickView2(url, name, w, h){
	w = w + 50; h = h + 105;
	var wndprop = "width="+w+",height="+h+",scrollbars,resizable";
	popupWin = window.open(url, name, wndprop, false);
	//popupWin.resizeTo(w + 50, h + 105);
	return popupWin;	
}



