function openPictureWindow(imageFilePath,alt,left,top) {  // v4.01
	
	var alt = alt || 'image';
	var left = left || 0;
	var top = top || 0;

		
	
	newWindow = window.open("", "newWindow", "width=100,height=100,scrollbars=no,resizable=yes,status=no,left="+left+", top="+top);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><script>var plusH = document.all ? 35 : 55; var plusW = document.all ? 10 : 10;</script><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src="'+imageFilePath+'" onclick="self.close()"  onload="self.resizeTo(this.width+plusW,this.height+plusH);" alt="'+alt+'">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
	
	return;
}

function openMoviePlayerWindow(videoId,alt,left,top) {  // v4.01
	
	var alt = alt || 'image';
	var left = left || 0;
	var top = top || 0;
			
	newWindow = window.open("/movieplayer.php?id="+videoId, "newWindow", "width=512,height=384,scrollbars=no,resizable=yes,status=no,left="+left+", top="+top);	
	newWindow.focus();	
	return;
}

function openFlashWindow(videoId, w, h, alt,left,top) {  // v4.01
	
	var alt = alt || 'image';
	var left = left || 0;
	var top = top || 0;
	var w = w;
	var h = h;
			
	newWindow = window.open("/flash.php?id="+videoId, "newWindow", "width="+w+",height="+h+",scrollbars=no,resizable=yes,status=no,left="+left+", top="+top);	
	newWindow.focus();	
	return;
}