 // Generate Order No ---------------------------------------------------------------------------------
var d=new Date();
var yr = (d.getYear() ).toString();
yr = yr.charAt(3);
var dy = (d.getDay() ).toString();
var mo = (d.getMonth() ).toString();
var hr = (d.getHours() ).toString();
var mn = (d.getMinutes() ).toString();
var sc = (d.getSeconds() ).toString();
var onum = yr+mo+dy+hr+mn+sc

// populate Text area Terms and conditions -------------------------------------------------------------
 function PopTxtTc() {
var frm = document.forms.FrontPage_Form1; 
frm.Tc.value="Our transfer and editing services are for (PAL UK) United Kingdom domestic recorded video tape / DVD disc formats only.It is your responsibility to ensure that any audio/visual material supplied on your video tape, shall not infringe any third partys copyright, patent, trademark, trade secret or rights of publicity or privacy and that you agree to indemnify us in the event of any breach of copyright claims being brought against our business in respect of material supplied by you the customer.Unless specifically stated in writing you the customer accept our decisions on editorial creativity including any decision to exclude material we consider unsuitable for any reason. Whilst every care is taken in the handling of your property in the unlikely event of loss or damage to your video tapes or other material,whilst they are in our possession. Our liability will be limited to the replacement cost of the equivalent blank materials or media only.Although we use high quality blank DVD disc and encoding systems, in common with other providers of services involving DVD duplication we can not guarantee that our DVDs are compatible with all DVD players.";}

// populate selection option Postage -------------------------------------------------------------
 function PopOptPostage(SelInd) {
var Select=document.FrontPage_Form1.Postage.options	
 var opt = new Array(); var optval = new Array();
     opt[1]="Royal Mail 1st class Recorded delivery";  optval[1]="495";
     opt[2]="No Postage";      optval[2]="0";
    var l = opt.length-1; Select.length = 0;
	for(i=0;i<l;i++) {Select[i] = new Option (opt[i+1])
	Select[i].value =(optval[i+1])
	Select.selectedIndex=SelInd}} 
	
// populate selection option Number -------------------------------------------------------------
 function PopOptNumber(SelInd) {
var Select=document.FrontPage_Form1.Number.options	
 var opt = new Array(); var optval = new Array();
     opt[1]=" ";  	optval[1]="0";
     opt[2]="1";      optval[2]="1";
      opt[3]="2";     optval[3]="2";
      opt[4]="3";     optval[4]="3";
      opt[5]="4";     optval[5]="4";     
      opt[6]="5";     optval[6]="5";
      opt[7]="6";     optval[7]="6";
      opt[8]="7";     optval[8]="7";
      opt[9]="8";     optval[9]="8";
      opt[10]="9";     optval[10]="9";
      opt[11]="10";     optval[11]="10";
      opt[12]="11";     optval[12]="11";
      opt[13]="12";     optval[13]="12";
      opt[14]="13";     optval[14]="13";
      opt[15]="14";     optval[15]="14";
      opt[16]="15";     optval[16]="15";
      opt[17]="16";     optval[17]="16";
      opt[18]="17";     optval[18]="17";
      opt[19]="18";     optval[19]="18";
      opt[20]="19";     optval[20]="19";
      opt[21]="20";     optval[21]="20";
    var l = opt.length-1; Select.length = 0;
	for(i=0;i<l;i++) {Select[i] = new Option (opt[i+1])
	Select[i].value =(optval[i+1])
	Select.selectedIndex=SelInd}}