function CreateWin(header, text, url)
{ 

url = (url) ? url : location.href;

header = '<a href="' + url + '" style="color: #123862; text-decoration: none;">' + header + '</a>';
text = text + '<br><br><a href=' + url + '>' + 'подробнее' + '</a>'; 
window.h = header;
window.t = text;

b = window.open( "/articles/tmpl2blogger.shtml", "blogger", "scrollbars=1, status=0, location=1, menubar=0, resizable=1, width=640, height=480" );

}


