/* privacy.js */
/* 12.06.04   */

function showPriv()
{	//Opens a new window to show the privacy statement
	window.open("http://www.iotechno.com/privacy.html",null,"status=no,toolbar=no,menubar=yes,location=no,scrollbars=yes");
}

function changePriv()
{	//Rewrites the link for the privacy statement if javascript is enabled
	document.getElementById("privacy").href="javascript:showPriv();";
	document.getElementById("privacy").target="_self";
}

onload=changePriv;

