function callPopup(swf){
	var lnk = "swfPopup.html?"+swf;
	topPos = (((screen.height) / 2) - 240);
	leftPos = (((screen.width) / 2) - 178);
//	alert(topPos);
	document.getElementById("player").style.left = leftPos;
	document.getElementById("player").style.top = topPos;
	document.getElementById("player").style.display = "inline";
	document.playerframe.location.href = lnk;
//	win = window.open(lnk,"swfWin","width=356,height=356,noresize");
}