// JavaScript Document
<!-- This part opens a new window for selecting countries -->
function SetCountryPopup() {
    var cWin=window.open("setcountry.php?username=johndoe","SetCountry","width=250,height=250,scrollbars=no,dependent=yes");
    cWin.opener=window.self;
    cWin.focus();
}

