
function popWin(url) {
  window.open(url, "popup", "width=685, height=500, scrollbars=yes, resizable=yes");
}

function popDbcWin(url) {
  window.open(url, "dbc", "width=685, height=500, scrollbars=yes, resizable=yes, menubar=no, toolbar=no");
}

$(document).ready(function(){

  $("a.popup").bind("click", function(){ popWin($(this).attr("href")); return false; });
  $("a[href*='swdecorating.designbycolor.net']").bind("click", function(){ popDbcWin($(this).attr("href")); return false; });

});