  ////---------------------------//// 
 //    Popup.js					  //  © 2003 Thijs Putman (info@tphnet.com), alle rechten voorbehouden.
////---------------------------////

  //////
 // Function ShowMenu(Menu)
//////

function ShowMenu(menu){

	document.getElementById(menu).style.visibility  = "visible";}

  //////
 // Function HideMenu(Menu)
//////

function HideMenu(menu){

	document.getElementById(menu).style.visibility  = "hidden";}

  //////
 // Function HideAllMenu()
//////

function HideAllMenu(){

	document.getElementById("MenuSubHome").style.visibility  = "hidden";
	document.getElementById("MenuSubFotografie").style.visibility  = "hidden";
	document.getElementById("MenuSubStudio").style.visibility  = "hidden";
	document.getElementById("MenuSubContact").style.visibility  = "hidden";}

  //////
 // Function popUpImage(Image, Description)
//////

function popUpImage(image, description){

	window.open('Index.php?actie=image&image=' + image + '&description=' + description,'image','width=120,height=120');}

  //////
 // Function Resize(X, Y)
//////

function Resize(x, y){

	var x;
	var y;
	
	window.resizeTo(x, y);}

  //////
 // Function popUp(URL, Name, Width, Height)
//////

function popUp(url, name, width, height){
	
	var url;
	var name;
	var width;
	var height;

	window.open(url, name, 'width='+width+',height='+height+',scrollbars');}

  //////
 // Function HideDescription()
//////

function HideDescription(){

	document.getElementById('ImageDescription').style.visibility  = "hidden";}

  //////
 // Function popUpFull(URL, Name)
//////

function popUpFull(url, name){

	var url;
	var name;

	window.open(url, name, 'fullscreen,resizable');}
