// external interface call to launch new window and embed swf

function launchSwfWindow(swfPath)
{
	newWindow = window.open('/pages/popup/'+swfPath,'newWin','toolbar=no,location=no,scrollbars=no,status=yes,width=550,height=425')
	
	if(newWindow)
		newWindow.focus();
}
