		function OpenWindow( param ) {

			var iHeight = 353;
			var iWidth  = 358;

			var i_Height = iHeight;// - (iHeight * 1);
			var i_Width  = iWidth;//  - (iWidth  * 1);
	
			var iLeft = (iWidth - i_Width) / 2;
			var iTop  = (iHeight - i_Height) / 2;
	
			var sFeatures = "height=" + i_Height + ",width=" + i_Width + ",left=" + iLeft + ",top=" + iTop + ",status=yes,toolbar=no,location=no,resizable=yes,scrollbars=yes , titlebar=no";
			var sPagina   = "../flash/" + param;
			window.open( sPagina, "Rinaldo Viana", sFeatures, true);
			
		}
		
		function RetornaLoja() {
		
		    window.opener.location="../Default.aspx";
		    self.close();
		
		}