<!--
// term of user and privacy policy
function openwindowCopy(CopyNumber)
{
	// CopyNumber
	//      
	//	1 - term of use
	//	2 - privacy policy
	
	
	
	if(CopyNumber == 1)
		window.open("../term.php","my_new_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=600, height=400")
	if(CopyNumber == 2)
		window.open("../privacy.php","my_new_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=600, height=400")

}
//-->