
var IE4 = (document.all) ? true : false;
var NS4 = (document.layers) ? true : false;

function writeDate() 
{
	today = new Date();
	document.write(today.getDate() + "-" + ( today.getMonth() + 1 ) + "-" + today.getFullYear());
}


function PopUp(myhtml, mywidth, myheight, strframe)
{
	window.open(myhtml,strframe,"resizable=off,scrollbars=off,height=" + myheight + ",width=" + mywidth);
}



function CreateWindow(nome, winwidth, winheight)
{
var x = 0;
x = String(Math.round(Math.random()));
TecWindow3=window.open(nome, x, 'width='+winwidth+',height='+winheight+',toolbar=0,directories=0,status=0,scrollbars=yes,resizable=0,menubar=0');
}  

function CreateWindowScroll(nome, winwidth, winheight)
{
var x = 0;
x = String(Math.round(Math.random()))+String(Math.round(Math.random()))
TecWindow3=window.open(nome, x, 'width='+winwidth+',height='+winheight+',toolbar=0,directories=0,status=0,scrollbars=yes,resizable=0,menubar=0');
}  

function CreateWindowScroll1(nome, winwidth, winheight)
{
var x = 0;
TecWindow3=window.open(nome, 'temp', 'width='+winwidth+',height='+winheight+',toolbar=0,directories=0,status=0,scrollbars=yes,resizable=0,menubar=0');
}  

function ConfirmWindow(strmsg, strURL)
{
if (confirm(strmsg))
  {
  window.location = strURL;
  }
}

