
function top(urlp, x, y) {
		    xposition=0; yposition=0;
		    if ((parseInt(navigator.appVersion) >= 4 )){
		        xposition = (screen.width - x - 30) / 2;
		        yposition = (screen.height - y - 30) / 2;
		    }
			if (screen.width <= x || screen.height <= y)
				{scrol=1;
				if (screen.width <= x)
				x = screen.width-30;
				if (screen.height <= y)
				y = screen.height-50;
				}
			else
				{scrol=0;}
args ="width="+ x +", height="+ y +", fullscreen=0,"+"location=0," + "menubar=0," + "resizable=0," + "scrollbars="+ scrol +", status=0," + "titlebar=0," + "toolbar=0," + "hotkeys=0," + "screenx=" + xposition + "," + "screeny=" + yposition + "," + "left=" + xposition + "," + "top=" + yposition;
window.open(urlp,"_blank",args);
}

function preload() {
        this.length = preload.arguments.length;
        for (var i = 0; i < this.length; i++) {
                this[i+1] = new Image();
                this[i+1].src = preload.arguments[i];        }  }
  if (document.images) {
        var stuff = new preload(
        		'p_0_1.jpg','p_2_3.jpg','p_4_5.jpg','p_6_7.jpg','p_8_9.jpg','p_10_11.jpg','p_12_13.jpg')
 }
