function openwin(the_file, name, width, height)
{
window.open(the_file, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=' + width + ',height=' + height);
}

function openwinall(the_file, name, width, height)
{
window.open(the_file, name, 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=' + width + ',height=' + height);
}

function openwinresize(the_file, name, width, height)
{
window.open(the_file, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
}

function openwinscroll(the_file, name, width, height)
{
window.open(the_file, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=' + width + ',height=' + height);
}

function openwinnone(the_file, name, width, height)
{
window.open(the_file, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=' + width + ',height=' + height);
}

function microsoftKeyPress() {
    if (window.event.keyCode == 27)
        window.close();
}

window.status = "::: Safety Unlimited ::: Phone - 0845 45 01 415 ::: Fax - 0845 45 01 416 :::";

function DoWin(URL,w,h)
{
	 var newWindow = window.open(URL,"Word","resizable=no,width=" + w + ",height=" + h + ",scrollbars=1,alwaysRaised=yes,top=50,left=50")
}

