// JavaScript Document

function popupWin() {
text  = "<font face='Verdana' color='#4863A0' font-size='14px' weight='bold'> \n<br>";
text += "<title>Yemek Tarifi yolla,</title>\n";
text += "<form name='myform' action='/yemek-set.php' method='POST'>\n";
text += "<h4>Yemek ve Tatlı tarifleri paylaş.</h4><br><br>\n";
text += "Arkadaşınızın ismi<br><input type=text style='font-size: 13px; font-family: verdana; font-weight: bold; color: #4863A0; BORDER: #000000 1px solid ; BACKGROUND-COLOR: #F8F8F8' name ='zname' size='25'><br><p>\n";
text += "Arkadaşınızın E-mail Adresi<br><input type=text style='font-size: 13px; font-family: verdana; font-weight: bold; color: #4863A0; BORDER: #000000 1px solid ; BACKGROUND-COLOR: #F8F8F8' name = 'to' size='25'><br><p>\n";
text += "Sizin isminiz<br><input type=text style='font-size: 13px; font-family: verdana; font-weight: bold; color: #4863A0; BORDER: #000000 1px solid ; BACKGROUND-COLOR: #F8F8F8' name ='name' size='25'><br><p>\n";
text += "<br><INPUT TYPE='SUBMIT' VALUE='YOLLA' STYLE= 'font size: 12px; color: #FFFFFF; border-color:#000000; border-width:1px; background-color: #9999CC'>\n";
text += "<br><br><br></form>\n";
newWindow = window.open('','newWin','width=450,height=450');
newWindow.document.write(text);
}
