// JavaScript Document
function newWindow(winurl,winname,winfeatures){
newWin=window.open(winurl,winname,winfeatures);
}

function MonkeyMail() {
var username = "info"; 
var hostname = "monkeymates.com"; 
var linktext = username + "@" + hostname; 
document.write("<a href=" + "mail" + "to:" + username + 
"@" + hostname + ">" + linktext + "</a>"); 
}

function LightboxDelegate1(url,caption) {
var objLink = document.createElement('a');
objLink.setAttribute('href',url);
objLink.setAttribute('rel','lightbox[garments]');
objLink.setAttribute('title',caption);
Lightbox.prototype.start(objLink);
}

function LightboxDelegate2(url,caption) {
var objLink = document.createElement('a');
objLink.setAttribute('href',url);
objLink.setAttribute('rel','lightbox[photos]');
objLink.setAttribute('title',caption);
Lightbox.prototype.start(objLink);
}




