function ProductCategoryExhibitList_openNewWindow(url, type, str)
{
  var date = new Date();
  var ProductExhibitListNewWindow = null;
	window.name = "productExhibitList" + date.getTime();		
	//winWidth = screen.width-10;
	//winHeight = screen.height-60;
	//features = "width="+ winWidth + ",height=" + winHeight + ",scrollbars=yes";	
	features = "";
	ProductExhibitListNewWindow = window.open(url, type, features);		
}

