function showHome(page) {
	  var URL = page;
	  
      var features =
        'width='         + '650' +
        ',height='       + '550' +
        ',directories='  + 'no' +
        ',location='     + 'no' +
        ',bar='      + 'no' +
        ',scrollbars='   + 'yes' +
        ',status='       + 'no' +
        ',toolbar='      + 'no' +
		',left='         + '250' +
		',top='          + '150' +
		',marginheight=' + '0' +
        ',Resizable='  + 'yes';
      recipe = window.open (URL, "mediavisionz", features);
   	  recipe.focus();
	 
}

