function window_pop_up (location, name, width, height) {
	winPop = window.open(location, name, 'width=' + width + ', height=' + height + ', toolbar=0, resizable=0, status=0, location=0, scrollbars=1');
	winPop.focus();
}

function setSWFDimensions (objID,width,height) {
	
	if (objID && width && height) {

		var fObj = document.getElementById(objID);
		var fEmb = document.getElementById(objID+'-embed');

		if (fObj && fObj.style) {
			fObj.setAttribute('width',width);
			fObj.setAttribute('height',height);
			fObj.style.width = width+'px';
			fObj.style.height = height+'px';
		}

		if (fEmb != null) {
			fEmb.width = width;
			fEmb.height = height;

			if (fEmb.style) {
				fEmb.style.width = width+'px';
				fEmb.style.height = height+'px';
			}
		}
	}
}