// 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=\"'+ style+ 'width: '+ width +'px; height: '+ height +'px; ' + 
		'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + imgfile + '\',sizingMethod=\'scale\')\" />';
		document.write(content);
	}
	else  {
		var content = '<img border=\"0\"  style=\"'+style+'\" src=\"' + imgfile + '\" width=\"'+ width +'\" height=\"'+ height +'\"></div>';
		document.write(content);
	}
}

function fillAddress() {
	document.f1.company2.value = document.f1.company.value;
	document.f1.fname2.value = document.f1.fname.value;
	document.f1.lname2.value = document.f1.lname.value;
	document.f1.address2.value = document.f1.address.value;
	document.f1.city2.value = document.f1.city.value;
	document.f1.prov2.value = document.f1.prov.value;
	document.f1.postal2.value = document.f1.postal.value;
	document.f1.country2.value = document.f1.country.value;	
	document.f1.phone2.value = document.f1.phone.value;
}

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