// JavaScript Document
function output_normal(imgfile, width, height, style) {
	var version = navigator.userAgent;
	if (version.indexOf('Firefox') == -1) {
		var content = '<img src=\"images/blank.gif\" border=\"0\" style=\"width: '+ width +'px; height: '+ height +'px;' + style+'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + imgfile + '\',sizingMethod=\'scale\')\" />';
		document.write(content);
	}
	else  {
		var content = '<img border=\"0\" src=\"' + imgfile + '\" width=\"'+ width +'\" height=\"'+ height+ '\" style=\" ' +style+'\">';
		document.write(content);
	}
}

function openWindow(url,w,h) {
	popupWin=window.open(url,'remote','width='+w+',height='+h+',top=20,left=20');
}