document.write("<IFRAME src='/get.php' id='abc' frameborder=0 width='100%' height='1200' scrolling='no'></IFRAME>"); 
$('#abc').load (
        function()
        {
			$("#abc").contents().find("a")
			  .attr({ target: "_parent" });
        }
);


