function showImage(language_id, gallery_id, image_id){
  newWindow = window.open("images.php?lang=" + language_id + "&g_id=" + gallery_id + "&i_id=" + image_id, "Images",  "SCROLLBARS=YES, RESIZABLE=YES, WIDTH=640, HEIGHT=310");
  newWindow.focus();
}

function openNewsletter(url, name, params){
	var wa = window.open (url, name, params);
	if (wa != null && wa.focus) {
		wa.focus ();
	}
}

function clearNlBox() {
	if (document.forms.newsletter.email.value == "Type in your e-mail here"){
		document.forms.newsletter.email.value = ""
	}
}

function privacy() {
  newWindow = window.open("privacy.htm", "Privacy",  "SCROLLBARS=YES, RESIZABLE=YES, WIDTH=430, HEIGHT=650");
  newWindow.focus();
}

