function ShowPicture(GraphicPath)
{
var w = window.open("","myWind","width=500, scrollbars=yes, resizable=yes");
var d = w.document

d.open();
d.write('<html><head><link rel="stylesheet" href="style/default.css" type="text/css"><title>Оренбургские платки и палантины</title></head>');
d.write('<body bgcolor="000000"><p><a href="http://www.platochki.ru">www.platochki.ru</a></p>');
d.write('<img alt="Оренбургская паутинка" src = "' + GraphicPath + '"></body></html>');
d.close();
}

function ShowText(Text)
{
var ww = window.open("","myWind1","width=450, height=300, scrollbars=no, toolbars=no, resizable=yes");
var dd = ww.document

dd.open();
dd.write('<html><head><link rel="stylesheet" href="style/default.css" type="text/css"><title>Оренбургские платки и палантины</title></head>');
dd.write('<body bgcolor="000000"><p><a href="http://www.platochki.ru">www.platochki.ru</a></p>');
dd.write('<p class="text">'+Text+'</p>');
dd.close();
}
