function playVid(file,wd,hd)
{
	day = new Date();
	id = day.getTime();

	
	var w = (screen.width-wd)/2;
	var h = (screen.height-hd)/2;
	
	Vid = window.open("", id,"height="+hd+",width="+wd+",toolbar=no,scrollbars=no,menubar=no,left = "+w+",top = "+h+"'");
	Vid.document.write('<html><title>Kitay Productions</title><head></head><body bgcolor="#000000" topmargin="0" bottommargin="0" rightmargin="0" leftmargin="0" marginwidth="0" marginheight="0">\n');
	Vid.document.write('<embed src= "'+file+'" autostart="true" width="'+wd+'" height="'+hd+'" ></embed></body></html>\n');
    /// Vid.document.write('<a href="javascript:window.close();">Close</a>');
	Vid.document.close();
}
