<!--
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
			
ns4 = ((navigator.appName == "Netscape") &&	(parseInt(navigator.appVersion) >= 4 ))


function openwin2( urlpage, width, height, center) {
                                        
        xpos=0; ypos=0;
        if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
                xpos = (screen.width - width) / 2;
                ypos = ((screen.height - height) / 2);
                ypos = ypos -100;
        }
        arg = "width=" + width + "," 
        + "height=" + height + "," 
        + "location=0"	// address bar
        + "menubar=0,"
        + "resizable=1,"
        + "scrollbars=1,"
        + "status=0," 
        + "toolbar=0,"
        + "screenx=" + xpos + ","  // Netscape
        + "screeny=" + ypos + ","  // Netscape
        + "left=" + xpos + ","     // IE
        + "top=" + ypos;           // IE

        window.open( urlpage,'newwin',arg );
}
//-->
//ÇÔ¸Õãªé ===> <a href="javascript:openwin('show_profile.php ',530,320,1)"  ">


