function openwnd(text,img,wd,h,title)
{ 
h=h+24;
wd=wd+24;
var options  = "height="+h+",width="+wd;
 var mydate  = new Date()
 var hours   = mydate.getHours()
 var minutes = mydate.getMinutes()
 var seconds = mydate.getSeconds()
 var win = "newwin"+hours+minutes+seconds;

 var w=window.open("", win, options);
 w.document.write("<HTML>");
 w.document.write("<HEAD><TITLE>"+title+"</TITLE>");
 w.document.write("<link rel='StyleSheet' type='text/css' href='css/main.css'>");
 w.document.write("<link rel='StyleSheet' type='text/css' href='css/manage.css'>");
 w.document.write("</HEAD>");
 w.document.write("<BODY>");
 w.document.write("<center>");
 w.document.write("<div class='photo'><img src="+img+" onClick='self.close()' style='cursor:hand'></div>");
 w.document.write("<font color='#000000'>"+text+"</font>");
 w.document.write("</center>");
 w.document.write("</HTML>");
}

function showinfo() {
window.open("http://www.open.by/empty_cart.html",'', "height=350,width=450");
}
function login()
{ 
window.open("login.php",'', "height=350,width=450"); 
}

