function OpenChat()
{
var popup = window.open('http://www.cookbooks.com/chatroom/default.asp','windowName','width=700,height=600');
if (!popup.opener) popup.opener = self;
}

function emailfriend(){
config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=500,height=400'

config += 'scrollbars=no,resizable=no'
pop = window.open ("","pop",config)

pop.document.write('<body>');
pop.document.write('<center><img src="emlogo.jpg" border=0 width=100 height=65></center>');
pop.document.write('<center><form name=form1 method=post action="http://www.cook-books.com/femail.asp"></center>');
pop.document.write('<center><table border=0 width=90%><tr><td width=30% align=left>To:</td>');
pop.document.write('<td align=left><input type="text" name="to" size=35></td></tr>');
pop.document.write('<tr><td align=left>From: <font color="red">(email required)</font></td><td align=left><input type="text" name="from" size=35></td></tr>');
pop.document.write('<tr><td align=left>Subject:</td><td align=left><input type="text" name="subject" size=35 value="Hi, this is really cool!"></td></tr>');
pop.document.write('<tr><td align=left>Message:</td><tr>');
pop.document.write('<tr><td>&nbsp;</td><td align=left>');
pop.document.write('<textarea name="message" rows=6 cols=30>Check this site out: http://www.cookbooks.com</textarea></td></tr>');
pop.document.write('<tr><td>&nbsp;</td><td align=left><input type="submit" name="sb" value="Submit"><input type=button name=bt value="Close" onClick="javascript:window.close()"></td></tr></table></center></form>');

pop.document.write('</body>');

}

function emailus(){
config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=500,height=450'

config += 'scrollbars=no,resizable=no'
pop = window.open ("","pop",config)

pop.document.write('<body>');
pop.document.write('<center><img src="emlogo.jpg" border=0 width=100 height=65></center>');
pop.document.write('<center><form name=form1 method=post action="http://www.cook-books.com/emailus.asp"></center>');
pop.document.write('<center><table border=0 width=90%><tr><td width=30% align=left>To:</td>');
pop.document.write('<td align=left><input type="text" name="to" size=35 value="questions@cookbooks.com"></td></tr>');
pop.document.write('<tr><td align=left>From:<font color="red">(email required)</font></td><td align=left><input type="text" name="from" size=35></td></tr>');
pop.document.write('<tr><td align=left>Subject:</td><td align=left><input type="text" name="subject" size=35></td></tr>');
pop.document.write('<tr><td align=left>Message:</td><tr>');
pop.document.write('<tr><td>&nbsp;</td><td align=left>');
pop.document.write('<textarea name="message" rows=6 cols=30></textarea></td></tr>');
pop.document.write('<tr><td>&nbsp;</td><td align=left><input type="submit" name="sb" value="Submit"><input type=button name=bt value="Close" onClick="javascript:window.close()"></td></tr></table></center>');
pop.document.write('<table border=0 width=90%><tr><td align=center><font align=left color="red">Enter a valid email address, send us email about the questions you have for this site. Thanks! Please go to our Discussion Page if you have any recipe related questions.</font></td></tr></table></form>');
pop.document.write('</body>');

}