
function fnPopup(str, winWidth, winHeight)
{
str1='';
  if (str==1)
  {
    str1='<table style="border-collapse: collapse;" width="95%" border="0" cellpadding="0">'+
          '<tbody><tr>'+
'            <td style="border-style: none; border-width: medium;" align="center"><b>'+	
'              <font style="font-size: 12pt;">**<u>Authorized Retailer &amp; Concierge '+
'              Services</u>**</font></b></td>'+
'          </tr>'+
'          <tr> '+
'      <td style="border-style: none none solid; border-width: medium medium 1px;">	'+
'<p style="margin-top: 0pt; margin-bottom: 0pt;" align="center"> <img src="/images/des/authorized-dealer.gif" alt="Authorized Dealer Logo" width="85" border="0" height="80"></p></td>'+
'          </tr>'+
'        </tbody></table></td>'+
'    </tr>'+
'    <tr> '+
'<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-top-style: none; border-top-width: medium;">	'+
'<p style="margin: 2px 3px 0px;" align="center"><b>	'+
'<font color="#ff0000">A T T E N T I O N !</font></b></p></td>'+
'   </tr>'+
'    <tr> '+
'      <td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px;">	'+
'        <table style="border-collapse: collapse;" width="100%" border="0" cellpadding="3">'+
'          <tbody><tr> '+
'            <td> <p align="justify"><font face="Times New Roman">All major brands '+
'                distribute their products exclusively through their international '+
'                network of authorized retailers. Gideons Jewelry is an authorized '+
'                retailer for most of the brands listed on this website. In addition '+
'                Gideons Jewelry offers a complete concierge service in collaboration '+
'                with selected authorized dealers.<br>'+
'                <br>'+
'                Internet shoppers should be well informed that products presented '+
'                and sold through unauthorized <b>on-line sellers</b> could in '+
'                fact turn out to be <b>counterfeits</b>, <b>refurbished</b>, or '+
'                have been <b>tampered with</b> by removing/changing the original '+
'                serial number. In addition the source and originality of these '+
'                products is uncertain. <br>'+
'                <br>'+
'                Such products are <u>NOT</u> covered by brands international warranty '+
'                under any circumstances. Therefore they will not benefit from '+
'                brands high level of after-sales service.</font></p>'+
                '</td>'+
'          </tr>'+
'        </tbody></table></td>'+
'   </tr>'+
'  </tbody>'+
'  </table>';

 
 }
else if (str==2)
{
str1='<h1>Request a Quote</h1>h1>'+
'<form action="/content/quote.php" method="post">'+
'<div class="msg-notice">'+
'    Fill form and click submit button<br>'+
'        Fileds with (*) are required'+
'</div>'+
'<div class="field required first">'+
'<label>Name(*) :</label>'+
'<div>'+
'<input type="text" name="yname" id="raq-yname" maxlength="64">'+
'</div>'+
'</div>'+
'<div class="field required clearfix">'+
'<label>Email(*) :</label>'+
'<div>'+
'<input type="text" name="yemail" id="raq-yemail" maxlength="64">'+
'</div>'+
'</div>'+
'<div class="field required clearfix">'+
'<label>Phone(*) :</label>'+
'<div>'+
'<input type="text" name="phone" id="raq-phone" maxlength="64">'+
'</div>'+
'</div>'+
'<div class="field required clearfix">'+
'    <label>Comment :</label>'+
'<div>'+
'    <textarea rows="5" cols="40" name="comment" id="raq-comment"></textarea>'+
'</div>'+
'</div>'+
'<div class="buttons">'+
'<input type="submit" id="request-a-quote-submit" value="Submit" class="button-request-a-quote submit ">'+
'</div></form>';



 }
 
	popup = window.open("","","width=" + winWidth + ",height=" + winHeight);
	popup.document.open();
	popup.document.write(str1);
	popup.document.close();

}
