function popUp(num,pic)
{
pop = window.open("","popWin","height=360,width=550,top=10,left=10,screenX=10,screenY=10,scrollbars=auto,toolbars=no,statusbar=no,resizable=yes");
pop.document.open();
pop.document.write("<HTML><HEAD><TITLE>Pine Cone Accommodations - Vacation Rental #"+num+"</TITLE></head>");
pop.document.write("<BODY onLoad='self.focus();' BGCOLOR='#E5D3C1' topmargin='10'>");
pop.document.write("<DIV ALIGN='CENTER'><IMG SRC='http://www.pineconeaccommodations.com/images/"+pic+"'><BR>");
pop.document.write("</BODY></HTML>");
pop.document.close();
}
