<!-- Begin

var popupWin = null;	
function ShowTemplate(id, w, h){
	var width =eval(w)+30;
	var height = eval(h)+60;
		
	bottom = screen.height ;
	right = screen.width ;
		
	var pos_x = parseInt((right- width)/2) ;
	var pos_y = parseInt((bottom - height)/2);	
		
	var options = 	"scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no,location=no,directories=no,width=" + width + ",height=" + height;
		
	options += (',left=' + pos_x + ',top=' + pos_y );
		
	var strUrl = "pop.asp?id="+ id +"&w="+ w +"&h="+ h +"" ;
	
	if(!popupWin || popupWin.closed)
		popupWin = window.open( strUrl, "Multivins", options );
	else
		{
		popupWin.location.href= strUrl;
		popupWin.focus();
		}
}	
//  End -->
