
<!-- (c) All Copyright 1995 - 2006 Neil Verplank,  Dovetail Custom Furniture -->


function getLocation() {

	url 	= new String(location.href);
	posLoc 	= url.indexOf('?') + 1;
	posShow	= url.indexOf('show.htm') + 1;
	posCGI	= url.indexOf('/cgi-bin');
	if (posCGI > -1) {
		link 	 = url.substring(posCGI,url.length);
	} else if (posLoc > 0) {
		link 	 = url.substring(posLoc,url.length);
	} else if (posShow > 0) {
		link = "/furniture/welcome.htm";
	} else {
		link = "";
	}

	return link;

}


function topFrame() {

	lnk 	 = getLocation();

	if (lnk != "") { lnk = "?" + lnk; }

     	framez  = "<frameset rows=25,* border=0 frameborder=0 framespacing=0>";
	framez  = framez  + "<frame src='/furniture/menu.htm' name='topHm' scrolling=no noresize marginheight=0 marginwidth=0>";
	framez  = framez  + "<frame src='show.htm" + lnk + "' name='bottomHm' noresize marginheight=0 marginwidth=0>";
	framez  = framez  + "</frameset>";

	return framez;
}


function bottomFrame() {

        lnk = getLocation();
	if ( (lnk == "design.htm") ||   (lnk == "portfolio/portfolio.htm") ||  (lnk == "profile.htm") ) {
		lnkM = lnk.substr(0,lnk.length-4) + "Menu.htm";
	} else if ( lnk == "wood.htm" || lnk == "solids.htm" || lnk == "finish.htm" || lnk=="joinery.htm" || lnk=="eco.htm") {
        	lnkM = "designMenu.htm"; 
	} else if ( lnk == "commissions.htm" || lnk == "shop/") {
		lnkM = "profileMenu.htm";
	} else if ( lnk == "contact.htm" || lnk == "links.htm" || lnk == "links.htm#furniture" ||
		    lnk == "search.htm" ||  lnk == "map.htm" || lnk == "credits.htm") {
        	lnkM = "blank.htm"; 
	} else if ( 	lnk == "portfolio/beds.htm" || 
			lnk == "portfolio/cabinets.htm" || 
		 	lnk == "portfolio/coffee.htm" || 
		 	lnk == "portfolio/newest.htm" || 
		 	lnk == "portfolio/desks.htm" || 
		 	lnk == "portfolio/seating.htm" || 
		 	lnk == "portfolio/table.htm" || 
		 	lnk == "portfolio/tables.htm" || 
		 	lnk == "portfolio/guitars.htm" ) {
        	lnkM = "portfolio/portfolioMenu.htm"; 
	} else if ( 	lnk == "portfolio/" ) {
		lnk = "portfolio/portfolio.htm";
        	lnkM = "portfolio/portfolioMenu.htm"; 
	} else if ( 	lnk == "woods/" ) {
		lnk = "woods/";
        	lnkM = "woods/woodMenu.htm"; 
	} else if ( 	lnk == "store/" ) {
            framez  = "<frame src='http://neilv.etsy.com/' name='details' noresize marginheight=0 marginwidth=0>";

            return framez;

	} else if ( lnk.indexOf("cgi-bin") > -1 ) {
        	lnkM = "portfolio/portfolioMenu.htm"; 
	} else {
        	lnk = "welcome.htm"; 
        	lnkM = "blank.htm"; 
	}

        framez  = "<frameset cols=135,* border=0 frameborder=0 framespacing=0>";
        framez  = framez  + "<frame src='" + lnkM + "' name='menu' noresize marginheight=0 marginwidth=0>";
        framez  = framez  + "<frame src='" + lnk + "' name='details' marginheight=0 marginwidth=0>";
        framez  = framez  + "</frameset>";
//alert ("botFrame2" + framez);

        return framez;
}

