function openWin(url, sWidth, sHeight, nWin) {
	var setWidth = sWidth;
	var setHeight = sHeight;
	var setLeft = ((screen.width - setWidth) / 2);
	var setTop = ((screen.height - setHeight) / 2);
	var openWin = window.open(url, nWin, 'height=' + setHeight + ',width=' + setWidth + ',left=' + setLeft + ',top=' + setTop + ',location=no,menubar=no,directories=no,scrollbars=no,resizable=no,status=no');
	openWin.focus();
}

function displayFlash (swf, w, h) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"' +
	'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"' +
	'width="' + w + '" height="' + h + '" align="middle">');
	document.write('<param name="movie" value="' + swf + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#fff" />');
	document.write('<param name="scale" value="noscale" />');
	document.write('<embed src="' + swf + '" quality="high" scale="noscale"' +
	'bgcolor="#fff" width="' + w + '" height="' + h + '" align="middle" type="application/x-shockwave-flash"' +
	'pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}
