
  function OpenSeparateWindowFullScreen(url){
  var iwidth = window.screen.availWidth
  var iheight = window.screen.height
	
  window.open(url,null,'width=iwidth,height=iheight,left=0,top=0,toolbar=yes,location=no,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes,maximize=1')

}

// Function to Open New Window Page called from child iframe Menu
			function NewWin(url){
			  //alert('NewWin')
				window.location=url
      }
