var newWindow = null;

function CategoryProductExhibitList_openNewWindow(url, type, str)
{
	var date1 = new Date();
	window.name = "productExhibitList" + date1.getTime();
	//modify by lixiang 20040319
	//winWidth = screen.width-10;
	//winHeight = screen.height-60;
	//features = "width="+ winWidth + ",height=" + winHeight + ",scrollbars=yes";	
	newWindow = window.open(url, type);		
	if (newWindow != null)
	{
		if (newWindow.opener == null)
			newWindow.opener = self;
	} 	
}
