//This is an Anti Framebreaker / Framebuster Script //It prevents framed sites in your page from breaking out of the frame var framekiller = true; window.onbeforeunload = function() { if(framekiller) { return "Leave this Website?"; // any message that helps user to make decision } }; window.onload = function() { framekiller = false; };