//- Script by Justas Vinevičius
//- php@one.lt

var Images=Array();

function Img(name, path) {
	Images[name]=new Image();
	Images[name].src=path;
}

function Change(obj, name) { document.images[obj].src=Images[name].src; }

function OpenImagePopup(url,width,height) {

	var rnd = (Math.round((Math.random()*999)+1));
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(url, "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no");
}
