
function PopWin(url, name, options) {
	this["Url"+url] = window.open(url, name, options).focus();
}

function PopHref(anchor, name, options) {
  PopWin(anchor.href, name, options);
  return false;
}

function PopPrd(id) {
    PopWin('/products/view/?'+id,'PrdView'+id,'status=yes,resizable=yes,scrollbars=yes,width=600,height=400');
}

function PopOpt(id) {
    PopWin('/products/options/view/?'+id,'OptView'+id,'status=yes,resizable=yes,scrollbars=yes,width=600,height=400');
}

function PopSpec(id) {
    PopWin('/products/specials/view/?'+id,'OptView'+id,'status=yes,resizable=yes,scrollbars=yes,width=600,height=400');
}