
function popWin(strUrl, width, height, displaybars){
	if (displaybars == 1)
		descWin = window.open(strUrl, "Description","location=no,directories=no,width=" + width + ",height=" + height + ",scrollbars=no,toolbar=yes,resizable=no,menubar=yes,status=no");
	else
		descWin = window.open(strUrl, "Description","location=no,directories=no,width=" + width + ",height=" + height + ",scrollbars=no,toolbar=no,resizable=no,menubar=no,status=no");
	
}
