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');
		var ie   = navigator.appName.toUpperCase().match(/MICROSOFT INTERNET EXPLORER/);
		
		if (fObj && fObj.style) {
			fObj.setAttribute('width',width);
			fObj.setAttribute('height',height);
			
			if ( ie ) {
				fObj.style.width = width;
				fObj.style.height = height;
			}
			else{
				fObj.style.width = width+'px';
				fObj.style.height = height+'px';
			}
		}
		
		if (fEmb != null) {
			fEmb.width = width;
			fEmb.height = height;
			
			if (fEmb.style) {
				if ( ie ) {
					fEmb.style.width = width;
					fEmb.style.height = height;
				}
				else{
					fEmb.style.width = width+'px';
					fEmb.style.height = height+'px';
				}
			}
		}
	}
}

function scrollTop(){
	self.scrollTo( 0, 0 );
}