function open_image(url, width, height) {
	//alert(url);
  var popup = window.open(url, 'Image',
    'width=' + width + ',height=' + height + ',menubar=yes,toolbar=no,resizable=no,scrollbars=no');
  if (popup.blur) popup.focus();
  if (popup.focus) popup.focus();
}

function clickconfirm(text) {
	return confirm(text);
}

function setphotoid(which) {
	var photoidinput = document.getElementById("primaryphoto");
	photoidinput.value = which;
	return true;
}

