function NewWindow(mypage,myname,w,h,scroll,pos,resize,menu){			  

	if(pos=="random"){							  		 LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
	}

	if(pos=="center"){
		LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
		if (TopPosition>30){
			TopPosition=TopPosition-30;
		}
	}


	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=screen.width-w-20;TopPosition=30;}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location='+menu+',directories='+menu+',status='+menu+',menubar='+menu+',toolbar='+menu+',resizable='+resize+'';
	var hdl = window.open(mypage,myname,settings);
	hdl.window.focus();
}




function showPhoto(myImage,myDidas){
	NewWindow('p_photo.php?image='+myImage+'&didas='+myDidas,'wnd_photo',545,435,'no','center','no','no')
}

function doPrint(cols){
   NewWindow('p_print.php?cols='+cols,'wnd_print',618,430,'yes','center','no','no');
}

function doPrivacy(){
   NewWindow('p_privacy.php','wnd_privacy',618,430,'yes','center','no','no');
}