// JavaScript Document
function windowopen1(idprd,imgw,imgh)
{
	
  	var imgwidth,imgheight;
	imgwidth=parseInt(imgw)+100;
	imgheight=parseInt(imgh)+200;
	if (parseInt(imgwidth) < 250 )
	{
		  imgwidth=250;
	}	
	window.open("viewproductimage.asp?idProd="+idprd+"&width="+imgwidth+"&height="+imgheight+"", 'newpage1','scrollbars=yes,status=no,width='+imgwidth+',height='+imgheight+'');
}
function showdiv(divname,str,idproduct,caption,desc,wid,hit)
	{	
	//window.alert(divname);
	//alert(idproduct);
		document.getElementById(""+divname).style.visibility='visible';
		//document.getElementById(""+divname).style.position='absolute';		
		//alert(str);
		if( str!="" )
		document.getElementById(""+divname).innerHTML = "<table border=0 width=300 cellpadding=0 cellspacing=0  align=left><tr><td style='padding-top:0px;font-weight:bold;text-transform:uppercase '>"+caption+"</td></tr><tr><td>"+desc+"</td></tr><tr><td height='3'></td></tr><tr><td valign='top' align=left ><img src='../bac$end/imageUpload/OriginalImage/"+str+"'  width='300' style='border:#ccc 1px solid; ' ></td></tr><tr><td height='12'  ></td></tr><tr><td ><a href=javascript:windowopen1('"+idproduct+"','"+wid+"','"+hit+"') ><img src=../images/enlarge.jpg border=0 alt=enlarge/></a></td></tr></table>";
		window.scrollTo(0,480)
			}
