function PopUpFlash(url, title, width, height, top, left)
{
	if(!top) {	top=1; }
	if(!left) { left=1; }
	newWindow = window.open(url ,title,'resizable=no,scrollbars=no,status=yes,toolbar=no,status=no,width='+width+',height='+height+',top='+top+',left='+left);
}
