// JavaScript Document

function popit(sPicURL) { 
	window.open("js/popper.html?"+sPicURL, "", "resizable=1,height=200,width=200");
}
function popup(url, w, h, s) {
	var popup;
	var name = Math.floor(Math.random()*10000+1);
	name = 'window' + name;
	var features = 'width='+w+',height='+h+',scrollbars='+s;
	popup = window.open(url, name, features);
	popup.focus();
}