var flashvars = {};
var params = {
	menu: "false",
	quality: "best",
	scale: "exactfit",
	wmode: "transparent"
};
var attributes = {};
attributes.id = "player";

var newWindow = null;
function closeWin(){
	if (newWindow != null) {
		if(!newWindow.closed)
			newWindow.close();
	}
}
function popUpWin(url) {
	closeWin();
	strWidth = 450;
	strHeight = 550;
	scrWidth = screen.availWidth / 6;
	scrHeight = screen.availHeight / 6;
	var tools = "resizable=yes,toolbar=no,location=no,menubar=no,scrollbars=yes,width="+strWidth+",height="+strHeight+",left="+scrWidth+",top="+scrHeight;
	newWindow = window.open(url, 'popUpWin', tools);
	newWindow.focus();
}

