//------------------------------------------------------------- // doPopup //--------- function Start(URL_s, WIDTH, HEIGHT, closetime) { windowprops = "left=10,top=10,width=" + WIDTH + ",height=" + HEIGHT; preview = window.open(URL_s, "gen_win", windowprops); if (closetime) setTimeout("preview.close();", closetime*1000); } function doPopup(url, width, height) { closetime = 0; // Close window after __ number of seconds? // 0 = do not close, anything else = number of seconds Start(url, width, height, closetime); } //------------------------------------------------------------- // Activate Cloaking Device //--------- function bustOut() { if (parent.frames.length!=0) window.top.location.href="http://www.b-f.co.uk"; // OnLoad="bustOut()" } // Deactivate Cloaking --> //------------------------------------------------------------- //window.status='Welcome to eBusiness force';