/*
var req;
function navigate() {
        var url = "wid1_question.php?redirect="+redirect;
        if(window.XMLHttpRequest) {
                req = new XMLHttpRequest();
        } else if(window.ActiveXObject) {
                req = new ActiveXObject("Microsoft.XMLHTTP");
        }
	
        req.open("GET", url, true);		
        req.onreadystatechange = callback;
        req.send(null);
}

function callback() {        
        obj = document.getElementById("wid");
          
		if(req.readyState == 4) {
                if(req.status == 200) {
                       response = "<iframe style='width:500px; height:500px; overflow:scroll;'>"+req.responseText+"</iframe>";
					   document.write(response);		              						
                } else {
                        alert("There was a problem retrieving the data:\n" + req.statusText);
                }
        }
	
}
navigate();*/
document.write('<iframe style="border:0px; width:'+fwidth+'px; height:'+fheight+'px; overflow:scroll; vertical-align:center;" src="http://www.checkmyresume.org/wid1_question.php?redirect=0"></iframe>');


