// open new window function
function openwin(page, xLen, yLen) {
	var xPos = 200;
	var yPos = 200;
	window.open(page,'newpage','resizable=no,left='+xPos+',top='+yPos+',width='+xLen+',height='+yLen+',status=no,location=no,toolbar=no,menubar=no,scrollbars=no');
	return false;
}

function openwinScroll(page, xLen, yLen) {
	var xPos = 200;
	var yPos = 200;
	window.open(page,'newpage','resizable=no,left='+xPos+',top='+yPos+',width='+xLen+',height='+yLen+',status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');
	return false;
}

function writeNewsTicker(is_secure) {

	if(is_secure){
		var flash_src = 'https://www.caiti.info/flash/ticker.swf';
	}
	else{
		var flash_src = 'flash/ticker.swf';
	}

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="967" height="26" title="News Ticker">');
	document.write('	<param name="movie" value="' + flash_src + '" />');
	document.write('	<param name="quality" value="high" />');
	document.write('	<embed src="flash/ticker.swf" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="967" height="26"></embed>');
	document.write('</object>');

}
