/* Pops up a window and outputs an HTML document  */

function ShowWindow(url)
{
   options = "width=700,height=800,resizable=yes,scrollbars=yes";
   // Open the window and output the HTML content
   w = window.open(url,'Infos',options);
}

function ShowFiles(url){
    w = window.open(url,'Files','width=400,height=500,resizeable=yes,scrollbars=yes');
}

function uploadWindow(url){
    w = window.open(url,'Files',"width=600,height=700,resizeable=yes,scrollbars=yes");
    w.focus();
}

function ConfirmAction(message, url)
{
  if (confirm(message))
  {
	window.location = url;	
  } 
  else alert ('Cancelled');
}

function WindowAddress(url){
    w = window.open(url,'Address','width=300,height=300');
}

function editWindow(url){
   options = "width=700,height=800,resizable=yes,scrollbars=yes";
   // Open the window and output the HTML content
   w = window.open(url,'Edit_date',options);
}