function placeQuickTime(sPath,nWidth,nHeight){
	
	var s='<OBJECT  CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" 					WIDTH="'+nWidth+'" HEIGHT="'+nHeight+'" VIEWASTEXT> <PARAM NAME="scale" VALUE="ToFit"><PARAM NAME="src" VALUE="'+sPath+'" > <PARAM NAME="autoplay" VALUE="true" > <EMBED  SRC="'+sPath+'" TYPE="image/x-macpaint" PLUGINSPAGE="http://www.apple.com/quicktime/download"	QTSRC="'+sPath+'" WIDTH="'+nWidth+'" HEIGHT="'+nHeight+'" SCALE="ToFit" AUTOPLAY="true" ></EMBED> </OBJECT>';
	
	document.write(s)
}


function pr_pp(surl,id,nwidth,nheight) {
	
	window.open(surl, id, "top=100, left=100,width="+nwidth+",height="+nheight+",resizable=0,scrollbars=1,titlebar=0,menubar=0,location=0,status=0",1);
	
}

function placeMediaPlayer(sPath,nWidth,nHeight){
	var s='<OBJECT ID="MediaPlayer" WIDTH="'+nWidth+'" HEIGHT="'+nHeight+'" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject"><PARAM NAME="FileName" VALUE="'+sPath+'"><EMBED TYPE="application/x-mplayer2" SRC="'+sPath+'" NAME="MediaPlayer" WIDTH="'+nWidth+'" HEIGHT="'+nHeight+'"></EMBED></OBJECT>'
	
	document.write(s)
}



function addtofavorities(){
	if (document.all)
		window.external.AddFavorite(location.href,document.title);
	else
		alert('Press Ctrl-D to add this page to favorities.');
}