function expImg(imgSrc, width, height, publicidad)
{
	var hw = "";
	if (width) hw += "width=" + width;
	if (height)
	{
		if (hw != "") hw += ",";
		hw += "height=" + height;
	}
	
	var sOut = "";
	 
	sOut += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";	
	if (publicidad != null && publicidad == true)
	{
		sOut += '<div align="center">\n';
		sOut += "<script src='/js/pfads.js'></script>\n";
		sOut += '<a href="javascript:go(';
		sOut += "'ck_popup_images');";
		sOut += '"><img src="/ShowPub.aspx?s=R&c=popup_images&g=popup_images&id=ck_popup_images" border="0"></a>\n';
		sOut += "<br><br>";
	}
	sOut += "<img src='" + imgSrc + "'>\n";	
	if (publicidad != null && publicidad == true)
		sOut += '</div>\n';
	sOut += "</body>";

	var newWin = window.open("", "_blank", "scrollbars=no,menubar=no," + hw + ",resizable=yes,toolbar=no,location=no,status=no");
	newWin.document.write(sOut);
	newWin.document.close();	
}

function expImg2(imgSrc, include, alt)
{
	var newWin = window.open("/ExpImg.aspx?is=" + escape(imgSrc) + "&inc=" + escape(include) + "&alt=" + escape(alt), "_blank", "scrollbars=yes,menubar=no,resizable=yes,toolbar=no,location=no,status=no");
}

function addLoadEvent(func){
    var oldonload = window.onload;
    if (typeof window.onload != 'function')
    {
        window.onload = func;
    }else{
        window.onload = function(){
            if (oldonload)
            {
                oldonload();
            }
            func();
        }
    }
}