//Add framed art to basket
function Order() {
  if(isCFramePresent() && (frame.cFrameSpaceT!=0 || frame.cFrameSpaceR!=0 || frame.cFrameSpaceB!=0 || frame.cFrameSpaceL!=0)) {
    alert('You cannot add this framed art into Gallery. There is an empty space among frame and other elements.');
    return;
  }
  if(window.opener)
  {
    window.opener.location=createAddToCartUrl();
    window.opener.focus();
  } 
  else 
  {
   window.open(createAddToCartUrl());
  } 
  window.close();
}
function createWnd(url, name) {
    if(!name) name='';
    var wnd = window.open(url, name,'scrollbars=yes, menubar=yes, toolbar=no, status=yes, directories=yes, resizable=yes, location=yes, width=780, height=450, top=0, left=0');
    wnd.focus();
}

