    var StusWin;
    var params = ('toolbar=0,status=1,location=0,scrollbars=1,resizable=1,width=570,height=480');

function openit(cmpny,eml,cont,fx,phn,ordr)
{

    StusWin = window.open( '', 'myWin', params  );

    StusWin.document.write( "<HEAD>" );
    StusWin.document.write( "<TITLE>Acknowlegement</TITLE>" );
    StusWin.document.write( "</HEAD>" );

    StusWin.document.write( "<body bgcolor='#ffffff'>");
    StusWin.document.write( "<CENTER><B><FONT SIZE = +2>Your message is ready to send.</FONT><BR>" );
    StusWin.document.write( "<FONT SIZE = +1>Please confirm, or change, and click send.</FONT></CENTER>" );

    StusWin.document.write( "<form name=formConfirm action='gdform.asp' method='post'>" );

    StusWin.document.write( "<input type='hidden' name='redirect' value='close.htm' /> " );
    StusWin.document.write( "<input type='hidden' name='subject' value='Web Order' /> " );

    StusWin.document.write( "<p><b>Your Company Name:<br><input name='company' type='text' size='25' / value='" +  cmpny + "'></b></p>" );

    StusWin.document.write( "<p><b>Your Contact Name:<br><input name='contact' type='text' size='25' / value='" +  cont + "'></b></p>" );

    StusWin.document.write( "<p><b>Contact Fax number:<br><input name='fax' type='text' size='25' / value='" +  fx + "'></b></p>" );

    StusWin.document.write( "<p><b>Contact Phone Number:<br><input name='phone' type='text' size='25' / value='" +  phn + "'></b></p>" );

    StusWin.document.write( "<p><b>Contact email address:<br><input name='email' type='text' size='25' / value='" + eml + "'></b></p>" );

    StusWin.document.write( "<p><b>Place an order (Including a PO number), comment or question below,<br>You must have a credit application and tax exempt form on<br>" );

    StusWin.document.write( "file with us to order.<br><textarea name='Order' rows='7' cols='53' >" + ordr + "</textarea></b></p>" );

    StusWin.document.write( "<input type='submit' name='submit' value='SEND' /  > &nbsp; " );
    StusWin.document.write( "<input type=button NAME='closer' value='CANCEL' onClick='window.close();'>" );
    StusWin.document.write( "</form>" );
    StusWin.document.write( "<BR><BR><BR><BR><BR><BR>" );

    StusWin.document.write( "</B><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>" );


    StusWin.document.close();
}
	

