function showPhoto(theId, theLang, thePhotonum) {
	w_width = 700;
	w_height = 610;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = 'templates/ws_mm_photos_07/showphoto.php?pageid=' + theId + '&lang=' + theLang + '&photonum=' + thePhotonum;
  window.showPhotoWindow = open(fparam, 'showPhotoWindow', theWindowParam);
	setTimeout('if(showPhotoWindow&&!showPhotoWindow.closed)showPhotoWindow.focus()',100);
}
function showEnquiry(theId, theLang, thePageId) {
	w_width = 510;
	w_height = 490;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = '../../templates/ws_mm_photos_07/showenquiry.php?photoid=' + theId + '&lang=' + theLang+ '&pageid='+thePageId;
  window.showEnquiryWindow = open(fparam, 'showEnquiryWindow', theWindowParam);
	setTimeout('if(showEnquiryWindow&&!showEnquiryWindow.closed)showEnquiryWindow.focus()',100);
}
function showPhoto2(theId, theLang) {
	w_width = 730;
	w_height = 755;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = 'templates/ws_mm_photos_07/showframe.php?pageid=' + theId+'&lang=' + theLang;
  window.showPhoto2Window = open(fparam, 'showPhoto2Window', theWindowParam);
	setTimeout('if(showPhoto2Window&&!showPhoto2Window.closed)showPhoto2Window.focus()',100);
}
function ShowPhotoSrc(theId, thePhoto) {
	document.getElementById(theId).src = thePhoto;
}
function HideThumbPhoto(theId) {
	document.getElementById(theId).src = 'layout/images/blank.gif';
}
function photoGallery(theId, theLang) {
	w_width = 700;
	w_height = 620;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = 'templates/ws_mm_photos_07/showphotogallery.php?pageid=' + theId + '&lang=' + theLang;
  window.photoGalleryWindow = open(fparam, 'photoGalleryWindow', theWindowParam);
	setTimeout('if(photoGalleryWindow&&!photoGalleryWindow.closed)photoGalleryWindow.focus()',100);
}
function ValidatePhotoEnquiryForm (form) { // Used in Give us your feedback page (pageid=5&ctype=bm)
  var fname = form.fullname.value;   
  var email = form.email.value;

  if (!fname)	{
    alert("You must enter your full name.");
    return false;
	} else if (!email) {
		alert("You must enter your email.");
		return false;
	} else if ((email.indexOf('@') == -1) || (email.indexOf('.') == -1)) {
		alert("Wrong email format.");
		return false;
	} else {
		return true;
	}
}

