
function winPop1(imgSrc, imgWidth, imgHeight)
{
	strAttributes = "scrolling=no, width=" + imgWidth + " , Height=" + imgHeight;
	//alert(strAttributes);
	window.open(imgSrc, 'win8', strAttributes);
}

function winPop2(imgSrc, imgWidth, imgHeight)
{
	strAttributes = "scrolling=auto, width=" + imgWidth + " , Height=" + imgHeight;
	//alert(strAttributes);
	window.open(imgSrc, 'win9', strAttributes);
}
