// JavaScript Document

	 	function getHomePage(theTag) {
		
			if (getActiveStyleSheet() == "groom") {
				window.location = "/index_groom.html";
				return false;
			}
			else if (getActiveStyleSheet() == "bride") {
				window.location = "/index_bride.html";
				return false;				
			}
			else if (getActiveStyleSheet() == "corp") {
				window.location = "/index_corp.html";
				return false;				
			}
		
		}