function openwindow(page) {
	var newWindow = window.open(page,'PrivTOU','width=640,height=500,toolbar=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no');
	//newWindow.opener = window.parent.content;
	//newWindow.opener.name = "opener";
	newWindow.focus();
}


function fullwindow(page) {
	var newWindow = window.open(page,'fullWindow','width=780,height=560,toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes');
	//newWindow.opener = window.parent.content;
	//newWindow.opener.name = "opener";
	newWindow.focus();
}

function openEmailWin(page) {
	var newWindow = window.open('emailus.html', 'emailuswin','width=730,height=400,resizable=no,scrollbars=no,menubar=no');
	//newWindow.opener = window.parent.content;
	//newWindow.opener.name = "opener";
	newWindow.focus();
}

function email() {

}