/* $Id: vpscash.js 34 2010-03-15 15:07:17Z wouter $ */

function popup(value)
{
	window.open(value,'','fullscreen=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=yes,titlebar=1');
}

function changeCamPic(url, id)
{
	var randomnumber = Math.ceil(Math.random() * 5)
	var newurl = url.replace('1.jpg', randomnumber + '.jpg');
	document.getElementById('camfoto' + id).src = newurl;
}
