function IEPngFix( img , width , height , unique_name ) {

	var code = '<IMG align=texttop SRC="'+ img +'" WIDTH="' + width + '" HEIGHT="' + height + '" BORDER=0 id='+ unique_name +'>';
	if( navigator.userAgent.indexOf("Opera") > 1 )
		document.write(code);
	else
		if( navigator.userAgent.indexOf("MSIE 6") > 1 )
			document.write('<IMG align=texttop id='+ unique_name +' SRC="/img/emp.gif" WIDTH="' + width + '" HEIGHT="' + height + '" BORDER="0" ALT="" STYLE="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src=' + img + ');">');
		else
			if(navigator.userAgent.indexOf("MSIE 5") != -1)
				document.write(code);
			else
				document.write(code);
				
}

function ima_open(img,w,h){
window.open(img , 'image', 'top=100, left=300, height='+h+', width='+w);
}
