// JavaScript Document


function largeView(img, name, wintop)
{

var win = new Window({className: "alphacube", title: name, resizable: false, minimizable: false, maximizable: false, width:300, height:300, left:200, destroyOnClose: true}); 
  win.getContent().innerHTML = "<div align='center'><img src='http://yourpassionconsultant.com/images/cart/products/large/" + img + "_lg.jpg' width='300' height='300'></div>"; 

 
  win.showCenter(false,50,50);
  // win.setConstraint(true, {left:10, right:20});
  win.toFront();
  // win.setDestroyOnClose();
  
}

// Verisign Popup

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=516,height=440,left = 254,top = 164');");
}
