function Popup(page_url,width,height,left,top,resize,scroll,toolbar,menubar,status){

	//format url of the picture
	var newwindow = page_url;

	//properties of the new window
	var window_properties = "title=true,width="+width+",height="+height+",left=" + left + ",top=" + top + ",resizable="+resize+",scrollbars="+scroll+",toolbar="+toolbar+",menubar="+menubar+",status="+status+"";

	//open this new window
	var PageWindow = window.open(newwindow,"",window_properties);
};
