// JavaScript Document
function LoadSwf(dest,w,h){
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width="+w+" height="+h+">");		
	document.write("<param name='movie' value="+dest+">");	
	document.write("<param name='quality' value='high'>");		
	document.write("<embed src="+dest+" quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width="+w+" height="+h+"></embed></object>");		
}
function OpenWin(){
	OrPos=Math.floor((screen.width-500)/2);
	VerPos=Math.floor((screen.height-455)/2);
	NewWin=window.open("classi.htm","classi","toolbar=no,status=no,location=no,resizable=no,width=500,height=455,top="+VerPos+",left="+OrPos+",screenY="+VerPos+",screenX="+OrPos+"");
}





