
// output error message if validation fails
	var regionWin = null;	// calendar window
	
	function player(mov)	// popup calendar
	{ 
	

		playerWin=window.open('','name','height=500,width=700,location=0,status=0,scrollbars=0,resizable');
		var tmp = playerWin.document;
		tmp.write('<html><head><title>popup</title>');
		tmp.write('<style>.menu2{font-size: 12px;color:#0083D1;font-family: Arial, Helvetica, sans-serif;}</style>');
		tmp.write('</head><body>');
		tmp.write('<p align="right"><a class="menu2" href="javascript:self.close()">close player</a>&nbsp;</p>');
		tmp.write('<iframe src="http://www.imambo.com/' + mov + '" width="680" height="480"  frameborder="0"></iframe>');
		tmp.write('</body></html>');
		tmp.close();

	}
