// start special form onfoucs

function mlfocus(){
	if(this.mailinglist.email.value == "enter your email adress"){
		this.mailinglist.email.value = ""; 
	}else{
	} 
	
}

// end special form onfoucs

// start popup window for mailing list
function golist() {
var list=
window.open('','list','width=400,height=300,directories=no,location=no,toolbar=no,menubar=no,scrollbars=no,status=yes,resizable=no,top=200,left=200,screenx=200,screeny=200');
}
// end popup window for mailing list


// Start Disable right click script II on images
var clickmessage="This image is copyrighted.  Please respect the artist and ask first."

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
// End Disable right click script II on images

// Start Dropdown

		function gotoLink(){
			var URL = document.issue.link.options[document.issue.link.selectedIndex].value;
			window.location.href = URL;
		}
// End Dropdown

//

