// JavaScript Document
function openSecure( page) {
	document.location.href = "https://" + window.location.host + page;
}
function openNormal( page) {
	document.location.href = "http://" + window.location.host + page;
}
function openNormalDomain( Dompage) {
	document.location.href = "http://" + Dompage;
}