  ////---------------------------//// 
 //    Popup.js					  //  © 2004 Thijs Putman (info@tphnet.com), alle rechten voorbehouden.
////---------------------------////

  //////
 // Function popUpImage(Image, Description)
//////

function popUpImage(image, description){
	
	var image;

	window.open('../Index.php?actie=image&type=tattoo&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');}
