<!--

//THIS IS AN IMAGE FLIP SCRIPT FOR IMAGES NOT IN LAYERS
function subFlip(imageID,imageName) {
    if (document.images){	
    document.images[imageID].src = eval(imageName + ".src");
	}
}

//THIS IS THE IMAGE FLIP FUNCTION FOR IMAGES WITHIN LAYERS
function imgFlip(layer,imgName,imgObj) {
	if (menuItem==imgName) return;
    //alert('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src');
	if (document.images) {
		if (document.layers && layer!=null && imgObj!= null) eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src')
		else {
            if (document.images[imgName] != null) {
                document.images[imgName].src = eval(imgObj+".src");
            }
        }
	}
}


//OPEN POPUP WINDOW
function openPop(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function openEnlarge(theURL) {
	window.open(theURL,'enlarge','height=525,width=405,resizable=yes,status=yes,scrollbars=no');	
}

function openStreetSeen(theURL) {
	window.open(theURL,'enlarge','height=770,width=636,resizable=yes,status=yes,scrollbars=no');	
}

function openSignUp() {
	window.open('http://refinery29.com/thisweek/signup.html','Refinery29','height=480,width=380,resizable=yes,scrollbars=yes');	
}

//THIS IS A GENERIC DROPDOWN MENU JUMP SCRIPT
function jump_menu(form) {
  window.location.href = form.menu.options[form.menu.selectedIndex].value
}


// -->