/* ****************************************************
* File: nav.js
* Project: JProjecta1WK
* Author:         Wayne K.
* Date created:   10/27/05
* Purpose:        will be used to navigation coding 
* Functions listed:
*				                   
* Additional Info: none
***************************************************** */


//link to email

var name = "kasstudio";
var address = "yahoo.com";
var link = "Contact Web Master";
var subject = 'Yippee%20it%20works!';
function sendMail() {
document.write('<a class="webmasterlink" href=mailto:' + name + '@' + address + '?subject=' + subject + '>' + link + '</a>');

}

//navigation links between home and about pages

var homeLink = "Home";
var aboutLink = "About";
function mainNav() {
document.write('<p>' + '<a class="NavigationLinks" href=Default.htm' + '>' + homeLink + '</a>' + '</p>');
document.write('<p>' +'<a class="NavigationLinks" href=About.htm' + '>' + aboutLink + '</a>' + '</p>');

}

//navigation links between member and product pages
var aboutLink = "About";
var memberLink = "Members";
var productLink = "Products";
function memberNav() {
document.write('<p>' +'<a class="NavigationLinks" href=../About.htm' + '>' + aboutLink + '</a>' + '</p>');
document.write('<p>' + '<a class="NavigationLinks" href=MemberHome.htm' + '>' + memberLink + '</a>' + '</p>');
document.write('<p>' +'<a class="NavigationLinks" href=Products.htm' + '>' + productLink + '</a>' + '</p>');
}












