function setFlashElements(newW, newH, newT, newL) {
	var contenitore = document.getElementById('flashcontent');
	contenitore.style.width = newW+"px";
	contenitore.style.height = newH+"px";

	contenitore.style.top = "50%";
	contenitore.style.marginTop = newT+"px";
	contenitore.style.marginLeft = newL+"px";
	
	var credits = document.getElementById('credits');
	var newTop = -(newT*1);
	credits.style.top = "50%";
	credits.style.marginTop = newTop+"px";

	var body = document.getElementsByTagName("body")[0];
	var info = document.getElementById("info");
	body.removeChild(info);
}

function openPopup(url, name, w, h){
	var ow =  window.open (url, name, "width="+w+", height="+h+", top=((screen.availHeight/2) - (" + h / 2 + "))+, left=((screen.availWidth)-(screen.availWidth/2)-(" + w / 2 + "))" ); void(0);
	ow.focus();
}
