function popME(w,h,url){
	window.open(url,'windowname','height=' + h + ',width=' + w +',resizable=0,scrollbars=0,location=0,toolbar=0,status=0,left=100,top=100,screenX=100,screenY=100').focus;
}
function goLink(url){
	newwindow=window.open(url,"IMSW");
	if (window.focus) {newwindow.focus();}
}

function setFlashWidth(divid, newW){
	document.getElementById(divid).style.width = newW;
}
function setFlashHeight(divid, newH){
	if(newH.indexOf("%")>-1){
		document.getElementById(divid).style.height = newH;
	}else{
		document.getElementById(divid).style.height = newH+"px";
	}
}
function setFlashSize(divid, newW, newH){
	setFlashWidth(divid, newW);
	setFlashHeight(divid, newH);
}