function openMyWindow(s,x,y) {
  var h=Math.round((parseInt(screen.width)-x)/2), v=Math.round((parseInt(screen.height)-y)/2);
  myWindowObj=window.open("","","width="+x+",height="+y+",left="+h+",top="+v+",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
  myWindowObj.document.open();
  myWindowObj.document.write("<html><head><title>..:: CARA London ::..</title></head><frameset rows=100% cols=100% frameborder=NO border=0 framespacing=0><frame src='"+s+"' frameborder=NO framespacing=0 marginwidth=0 marginheight=0 width=100% height=100%></frameset></html>");
  myWindowObj.document.close();
}
function openMyWindowNF(s,x,y) {
  var h=Math.round((parseInt(screen.width)-x)/2), v=Math.round((parseInt(screen.height)-y)/2);
  myWindowObj=window.open(s,"openMyWindowNF","width="+x+",height="+y+",left="+h+",top="+v+",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
}
