function setHeight(id, nHeight) 
{	
	nHeight += "px";
	////alert(nHeight);
	//alert(document.getElementById("flashApp"));
	document.getElementById(id).style.height = nHeight;		
}
function getHeight(id)
{	
	return document.getElementById(id).style.height;		
}
//////////////
function setWidth(id, nWidth) 
{	
	nWidth += "px";
	//alert(nWidth);
	//alert(document.getElementById("flashApp"));
	document.getElementById(id).style.width = nWidth;		
}
function getWidth(id) 
{	
	return document.getElementById(id).style.width;		
}