
function blogwin( windowid, url )
{
    var options= "scrollbars=yes,resizable=yes,dependent=no,alwaysRaised=yes";
    var width= 1024;
    var height= 960;
    var result;

    if  ( width > 0 )
	{ options= options + "," + "width=" + width;		}
    if  ( height > 0 )
	{ options= options + "," + "height=" + height;		}

    result= window.open(
		    url,
		    windowid,
		    options, 
		    true					);

    result.focus();
    
}

