//v1.0
//Copyright 2006 Adobe Systems, Inc. All rights reserved.
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '<object ';
  for (var i in objAttrs)
    str += i + '="' + objAttrs[i] + '" ';
  str += '>';
  for (var i in params)
    str += '<param name="' + i + '" value="' + params[i] + '" /> ';
  str += '<embed ';
  for (var i in embedAttrs)
    str += i + '="' + embedAttrs[i] + '" ';
  str += ' ></embed></object>';

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "id":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}


//------------------- Date Function--------------------------

function writeTheDate()
{
	var today = new Date();
	var date = today.getDate();
	var day = today.getDay();
	var month = today.getMonth();
	var year = today.getYear();
	var month_name = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	var day_name = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var month_name = month_name[month];
	var day_name = day_name[day];
	date = fixDate(date);
	year = fixYear(year);
	return (day_name + ", " + month_name + " " + date + ", " + year);
}
function fixDate(date)
{
	var zero = "0";
	if (date < 10)
	{
		date = zero + date;
	}
	else
	{
		date = date;
	}
	return date;
}
function fixYear(value)
{
	var value;
	if (value < 1900)
	{
		value = value + 1900;
	}
	return value;
}
function checkrequired(which) 
{ 
	var pass=true; 
	if (document.images) 
	{ 
		for (i=0;i<which.length;i++) 
		{ 
			
			var tempobj=which.elements[i]; 
			if (tempobj.name.substring(0,8)=="required") 
			{ 
				
				if ((tempobj.type=="file" || tempobj.type=="text"||tempobj.type=="textarea"||tempobj.type=="password" ||tempobj.type.toString().charAt(0)=="s" ) && tempobj.value=='')
				{ 
					if(tempobj.disabled==false)
					{
						pass=false; 
						break; 
					}
				}
			} 
		} 
	} 
	if (!pass) 
	{ 
		shortFieldName=tempobj.name.substring(8,30).toUpperCase();
		shortFieldName=shortFieldName.replace("[","")
		shortFieldName=shortFieldName.replace("]","")
		alert("Please make sure the "+shortFieldName+" field was properly completed."); 
		tempobj.focus() ;						
		return false; 
				
	} else 
	
	return true; 
			
} 

function DisplayMail(Server, Login, Display){
        if ((Display.length == 0) || (Display.indexOf('@')+1)) {
        document.write( "<span class='ColorText4'>"+Login + "@" + Server+"</span>" ); }
        else  {
        document.write("<span class='ColorText4'>"+Display +"</span>"); }
}

function DisplayMailFooter(Server, Login, Display){
        if ((Display.length == 0) || (Display.indexOf('@')+1)) {
        document.write( "<span class='ColorText4'>"+Login + "@" + Server+"</span>" ); }
        else  {
        document.write("<span class='ColorText4'>"+Display +"</span>"); }
}
/*
var Header = '<tr>        <td align="center"><a href="index.html" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage(\'Image2\',\'\',\'images/header/link1_hover.gif\',1);"><img src="images/header/link1.gif" name="Image2" width="53" height="44" border="0"></a><a href="latestnew.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image3\',\'\',\'images/header/link2_hover.gif\',1)"><img src="images/header/link2.gif" name="Image3" width="121" height="44" border="0"></a><a href="auto/maildrops.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image4\',\'\',\'images/header/link3_hover.gif\',1)"><img src="images/header/link3.gif" name="Image4" width="82" height="44" border="0"></a><a href="secret/freerpts.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image5\',\'\',\'images/header/link4_hover.gif\',1)"><img src="images/header/link4.gif" name="Image5" width="129" height="44" border="0"></a><a href="sitemap.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image6\',\'\',\'images/header/link5_hover.gif\',1)"><img src="images/header/link5.gif" name="Image6" width="66" height="44" border="0"></a><a href="https://www.ptshamrock.com/order.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image7\',\'\',\'images/header/link6_hover.gif\',1)"><img src="images/header/link6.gif" name="Image7" width="59" height="44" border="0"></a><a href="search.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image8\',\'\',\'images/header/link7_hover.gif\',1)"><img src="images/header/link7.gif" name="Image8" width="62" height="44" border="0"></a><a href="contactus.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image9\',\'\',\'images/header/link8_hover.gif\',1)"><img src="images/header/link8.gif" name="Image9" width="90" height="44" border="0"></a><a href="about_us.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image10\',\'\',\'images/header/link9_hover.gif\',1)"><img src="images/header/link9.gif" name="Image10" width="72" height="44" border="0"></a></td> </tr>  <tr> <td><table width="780" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="275"><img src="images/header/logo.gif" width="275" height="88"></td> <td align="right" class="Padding7"><script language="JavaScript"> var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array() ;  KW_ARI[KW_ARI.length]=\'<span>" We now have so many regulations that everyone is guilty of some violation."<br>- <strong>Donald Alexander, IRS Director 1975, before Congress - 1975</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" It is dangerous to be right when the government is wrong."<br>- <strong>Voltaire (1694 - 1778)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Man was born free, and everywhere he is in chains"<br>- <strong>Jean-Jacques Rousseau: 1712 1778 &rsquo;Du Contrat Social&rsquo; Ch. 1</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Government is the worst abuse of privacy rights on the planet"<br>- <strong>Michael Hyatt author of "Invasion of Privacy"</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The true danger is when liberty is nibbled away, for expedience, and by parts."<br>- <strong>Edmund Burke</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Give me control over a nation&rsquo;s currency and I care not who makes its laws."<br>- <strong>Baron M. A. Rothschild (1744- 1812)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The first casuality of war is truth."<br>- <strong>Rudyard Kipling</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" Constant surveillance is  -- the ultimate implied threat of coercion."<br>- <strong>John Whitehead, Lawyer  and founder of the conservative Rutherford Institute</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" There&rsquo;s no way to rule innocent men. When there aren&rsquo;t enough criminals, one makes them. One declares so many things to be a crime that it becomes impossible to live without breaking the laws."<br>- <strong>Ayn Rand in "Atlas Shrugged"</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" When plunder has become a way of life for a group of people living together in society,<br> they create for themselves in the course of time a legal system that authorizes it,<br> and a moral code that glorifies it."<br>- <strong>Frederic Bastiat</strong</span>\';   j=parseInt(Math.random()*KW_ARI.length);   j=(isNaN(j))?0:j;     document.write(KW_ARI[j]);         </script>            </td>           </tr>         </table></td>       </tr>' ;

var innerHeader = '<tr><td align="center"><a href="../index.html" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage(\'Image2\',\'\',\'../images/header/link1_hover.gif\',1);"><img src="../images/header/link1.gif" name="Image2" width="53" height="44" border="0"></a><a href="../latestnew.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image3\',\'\',\'../images/header/link2_hover.gif\',1)"><img src="../images/header/link2.gif" name="Image3" width="121" height="44" border="0"></a><a href="../auto/maildrops.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image4\',\'\',\'../images/header/link3_hover.gif\',1)"><img src="../images/header/link3.gif" name="Image4" width="82" height="44" border="0"></a><a href="../secret/freerpts.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image5\',\'\',\'../images/header/link4_hover.gif\',1)"><img src="../images/header/link4.gif" name="Image5" width="129" height="44" border="0"></a><a href="../sitemap.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image6\',\'\',\'../images/header/link5_hover.gif\',1)"><img src="../images/header/link5.gif" name="Image6" width="66" height="44" border="0"></a><a href="https://www.ptshamrock.com/order.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image7\',\'\',\'../images/header/link6_hover.gif\',1)"><img src="../images/header/link6.gif" name="Image7" width="59" height="44" border="0"></a><a href="../search.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image8\',\'\',\'../images/header/link7_hover.gif\',1)"><img src="../images/header/link7.gif" name="Image8" width="62" height="44" border="0"></a><a href="../contactus.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image9\',\'\',\'../images/header/link8_hover.gif\',1)"><img src="../images/header/link8.gif" name="Image9" width="90" height="44" border="0"></a><a href="../about_us.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image10\',\'\',\'../images/header/link9_hover.gif\',1)"><img src="../images/header/link9.gif" name="Image10" width="72" height="44" border="0"></a></td> </tr>  <tr> <td><table width="780" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="275"><img src="../images/header/logo.gif" width="275" height="88"></td> <td align="right" class="Padding7"><script language="JavaScript"> var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array() ;  KW_ARI[KW_ARI.length]=\'<span>" We now have so many regulations that everyone is guilty of some violation."<br>- <strong>Donald Alexander, IRS Director 1975, before Congress - 1975</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" It is dangerous to be right when the government is wrong."<br>- <strong>Voltaire (1694 - 1778)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Man was born free, and everywhere he is in chains"<br>- <strong>Jean-Jacques Rousseau: 1712 1778 &rsquo;Du Contrat Social&rsquo; Ch. 1</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Government is the worst abuse of privacy rights on the planet"<br>- <strong>Michael Hyatt author of "Invasion of Privacy"</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The true danger is when liberty is nibbled away, for expedience, and by parts."<br>- <strong>Edmund Burke</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Give me control over a nation&rsquo;s currency and I care not who makes its laws."<br>- <strong>Baron M. A. Rothschild (1744- 1812)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The first casuality of war is truth."<br>- <strong>Rudyard Kipling</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" Constant surveillance is  -- the ultimate implied threat of coercion."<br>- <strong>John Whitehead, Lawyer  and founder of the conservative Rutherford Institute</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" There&rsquo;s no way to rule innocent men. When there aren&rsquo;t enough criminals, one makes them. One declares so many things to be a crime that it becomes impossible to live without breaking the laws."<br>- <strong>Ayn Rand in "Atlas Shrugged"</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" When plunder has become a way of life for a group of people living together in society,<br> they create for themselves in the course of time a legal system that authorizes it,<br> and a moral code that glorifies it."<br>- <strong>Frederic Bastiat</strong</span>\';   j=parseInt(Math.random()*KW_ARI.length);   j=(isNaN(j))?0:j;     document.write(KW_ARI[j]);         </script>            </td>           </tr>         </table></td>       </tr>' ;
*/
var Header = '<tr>        <td align="center"><a href="index.html" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage(\'Image2\',\'\',\'images/header/link1_hover.gif\',1);"><img src="images/header/link1.gif" name="Image2" width="53" height="44" border="0"></a><a href="http://www.ptshamrock.com/products/index.php?cPath=0" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image3\',\'\',\'images/header/link2_hover.gif\',1)"><img src="images/header/link2.gif" name="Image3" width="121" height="44" border="0"></a><a href="auto/maildrops.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image4\',\'\',\'images/header/link3_hover.gif\',1)"><img src="images/header/link3.gif" name="Image4" width="82" height="44" border="0"></a><a href="secret/freerpts.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image5\',\'\',\'images/header/link4_hover.gif\',1)"><img src="images/header/link4.gif" name="Image5" width="129" height="44" border="0"></a><a href="sitemap.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image6\',\'\',\'images/header/link5_hover.gif\',1)"><img src="images/header/link5.gif" name="Image6" width="66" height="44" border="0"></a><a href="https://www.ptshamrock.com/order.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image7\',\'\',\'images/header/link6_hover.gif\',1)"><img src="images/header/link6.gif" name="Image7" width="59" height="44" border="0"></a><a href="search.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image8\',\'\',\'images/header/link7_hover.gif\',1)"><img src="images/header/link7.gif" name="Image8" width="62" height="44" border="0"></a><a href="contactus.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image9\',\'\',\'images/header/link8_hover.gif\',1)"><img src="images/header/link8.gif" name="Image9" width="90" height="44" border="0"></a><a href="about_us.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image10\',\'\',\'images/header/link9_hover.gif\',1)"><img src="images/header/link9.gif" name="Image10" width="72" height="44" border="0"></a> </td> </tr> <tr><td align="right"> <table border="0"><tr><td align="right"><a href="https://www.ptshamrock.com/order_bwe.html">My Shopping CART</a></td></tr></table> </td></tr><tr> <td><table width="780" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="275"><img src="images/header/logo.gif" width="275" height="88"></td> <td align="right" class="Padding7"><script language="JavaScript"> var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array() ;  KW_ARI[KW_ARI.length]=\'<span>" We now have so many regulations that everyone is guilty of some violation."<br>- <strong>Donald Alexander, IRS Director 1975, before Congress - 1975</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" It is dangerous to be right when the government is wrong."<br>- <strong>Voltaire (1694 - 1778)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Man was born free, and everywhere he is in chains"<br>- <strong>Jean-Jacques Rousseau: 1712 1778 &rsquo;Du Contrat Social&rsquo; Ch. 1</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Government is the worst abuse of privacy rights on the planet"<br>- <strong>Michael Hyatt author of "Invasion of Privacy"</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The true danger is when liberty is nibbled away, for expedience, and by parts."<br>- <strong>Edmund Burke</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Give me control over a nation&rsquo;s currency and I care not who makes its laws."<br>- <strong>Baron M. A. Rothschild (1744- 1812)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The first casuality of war is truth."<br>- <strong>Rudyard Kipling</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" Constant surveillance is  -- the ultimate implied threat of coercion."<br>- <strong>John Whitehead, Lawyer  and founder of the conservative Rutherford Institute</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" There&rsquo;s no way to rule innocent men. When there aren&rsquo;t enough criminals, one makes them. One declares so many things to be a crime that it becomes impossible to live without breaking the laws."<br>- <strong>Ayn Rand in "Atlas Shrugged"</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" When plunder has become a way of life for a group of people living together in society,<br> they create for themselves in the course of time a legal system that authorizes it,<br> and a moral code that glorifies it."<br>- <strong>Frederic Bastiat</strong</span>\';   j=parseInt(Math.random()*KW_ARI.length);   j=(isNaN(j))?0:j;     document.write(KW_ARI[j]);         </script>            </td>           </tr>         </table></td>       </tr>' ;

var innerHeader = '<tr><td align="center"><a href="../index.html" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage(\'Image2\',\'\',\'../images/header/link1_hover.gif\',1);"><img src="../images/header/link1.gif" name="Image2" width="53" height="44" border="0"></a><a href="../products/index.php?cPath=0" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image3\',\'\',\'../images/header/link2_hover.gif\',1)"><img src="../images/header/link2.gif" name="Image3" width="121" height="44" border="0"></a><a href="../auto/maildrops.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image4\',\'\',\'../images/header/link3_hover.gif\',1)"><img src="../images/header/link3.gif" name="Image4" width="82" height="44" border="0"></a><a href="../secret/freerpts.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image5\',\'\',\'../images/header/link4_hover.gif\',1)"><img src="../images/header/link4.gif" name="Image5" width="129" height="44" border="0"></a><a href="../sitemap.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image6\',\'\',\'../images/header/link5_hover.gif\',1)"><img src="../images/header/link5.gif" name="Image6" width="66" height="44" border="0"></a><a href="https://www.ptshamrock.com/order.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image7\',\'\',\'../images/header/link6_hover.gif\',1)"><img src="../images/header/link6.gif" name="Image7" width="59" height="44" border="0"></a><a href="../search.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image8\',\'\',\'../images/header/link7_hover.gif\',1)"><img src="../images/header/link7.gif" name="Image8" width="62" height="44" border="0"></a><a href="../contactus.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image9\',\'\',\'../images/header/link8_hover.gif\',1)"><img src="../images/header/link8.gif" name="Image9" width="90" height="44" border="0"></a><a href="../about_us.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image10\',\'\',\'../images/header/link9_hover.gif\',1)"><img src="../images/header/link9.gif" name="Image10" width="72" height="44" border="0"></a></td> </tr> <tr><td align="right"> <table border="0"><tr><td align="right"><a href="https://www.ptshamrock.com/order_bwe.html">My Shopping CART</a></td></tr></table> </td></tr> <tr> <td><table width="780" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="275"><img src="../images/header/logo.gif" width="275" height="88"></td> <td align="right" class="Padding7"><script language="JavaScript"> var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array() ;  KW_ARI[KW_ARI.length]=\'<span>" We now have so many regulations that everyone is guilty of some violation."<br>- <strong>Donald Alexander, IRS Director 1975, before Congress - 1975</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" It is dangerous to be right when the government is wrong."<br>- <strong>Voltaire (1694 - 1778)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Man was born free, and everywhere he is in chains"<br>- <strong>Jean-Jacques Rousseau: 1712 1778 &rsquo;Du Contrat Social&rsquo; Ch. 1</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Government is the worst abuse of privacy rights on the planet"<br>- <strong>Michael Hyatt author of "Invasion of Privacy"</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The true danger is when liberty is nibbled away, for expedience, and by parts."<br>- <strong>Edmund Burke</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" Give me control over a nation&rsquo;s currency and I care not who makes its laws."<br>- <strong>Baron M. A. Rothschild (1744- 1812)</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" The first casuality of war is truth."<br>- <strong>Rudyard Kipling</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" Constant surveillance is  -- the ultimate implied threat of coercion."<br>- <strong>John Whitehead, Lawyer  and founder of the conservative Rutherford Institute</strong</span>\';  KW_ARI[KW_ARI.length]=\'<span>" There&rsquo;s no way to rule innocent men. When there aren&rsquo;t enough criminals, one makes them. One declares so many things to be a crime that it becomes impossible to live without breaking the laws."<br>- <strong>Ayn Rand in "Atlas Shrugged"</strong</span>\'; KW_ARI[KW_ARI.length]=\'<span>" When plunder has become a way of life for a group of people living together in society,<br> they create for themselves in the course of time a legal system that authorizes it,<br> and a moral code that glorifies it."<br>- <strong>Frederic Bastiat</strong</span>\';   j=parseInt(Math.random()*KW_ARI.length);   j=(isNaN(j))?0:j;     document.write(KW_ARI[j]);         </script>            </td>           </tr>         </table></td>       </tr>' ;

var LeftMenu = '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td height="18" class="PaddingLeft"><a href="http://ptshamrock.com/products/shopping_cart.php?sort=2a" class="MenuLink">MY Shopping Cart </a></td> </tr> <tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="apot.html" class="MenuLink">Asset Protection</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="apot.html" class="MenuLink">Bearer Co. &amp; Account</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="bookstore.html" class="MenuLink">Book Store</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="2pp.html" class="MenuLink">Passports</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="covisa.html" class="MenuLink">Company Credit Card</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="secret/consultants.htm" class="MenuLink">Consultation</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="reports/ibits.html" class="MenuLink">Corporations &amp; Trusts</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="atmcc.html" class="MenuLink">Credit/ATM Cards </a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="auto/degrees.html" class="MenuLink">Degrees</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="dippp.html" class="MenuLink">Diplomatic Passport</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="auto/cenam_dl.html" class="MenuLink">Drivers Licenses &amp; ID</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="finance/index.html" class="MenuLink">Financial Services</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="guarantee.html" class="MenuLink">Guarantee</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="shame.htm" class="MenuLink">Hall Of Shame</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="reports/index.html" class="MenuLink">Instant Reports</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="estate.html" class="MenuLink">Legal Tax Avoidance </a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="secret/freerpts.html" class="MenuLink">Monthly Missive</a> </td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr>  <td height="18" class="PaddingLeft"><a href="auto/anon_phone.htm" class="MenuLink">Mobile Phone &amp; Sim Chip</a></td> </tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr> <tr><td height="18" class="PaddingLeft"><a href="auto/maildrops.html" class="MenuLink">Mail Drops</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="pass2.html" class="MenuLink">New Passport Report</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="taxfree.html" class="MenuLink">Offshore Bank Accounts</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="newsletters.html" class="MenuLink">Offshore Newsletters</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="store/index.html" class="MenuLink">Offshore Store</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="https://www.ptshamrock.com/order.html" class="MenuLink">Order Form</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="dss-key.html" class="MenuLink">Our PGP Key</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="2pp.html" class="MenuLink">Passport Programs</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="ptbuzz.html" class="MenuLink">Privacy Newsletter</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="ptcard.html" class="MenuLink">PTCard&trade; Log-In </a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="ids.html" class="MenuLink">Misc ID</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="2pp.html" class="MenuLink">Residency Programs</a> </td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="secret/index.html" class="MenuLink">PT Secret Services </a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="auto/travelid.html" class="MenuLink">Travel Agent ID</a> </td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr> <tr> <td height="18" class="PaddingLeft"> <a href="auto/degrees.html" class="MenuLink">University Degrees</a></td></tr><tr><td height="1" align="center"><img src="images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr> <td height="18" class="PaddingLeft"> &nbsp;</td></tr><tr><td height="1" align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Email: <a href="contactus.htm" class="MenuLink">Click Here</a></td> </tr> </table>' ;


var InnerLeftMenu = '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td height="18" class="PaddingLeft"><a href="http://ptshamrock.com/products/shopping_cart.php?sort=2a" class="MenuLink">MY Shopping Cart </a></td> </tr> <tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../apot.html" class="MenuLink">Asset Protection</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../apot.html" class="MenuLink">Bearer Co. &amp; Account</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../bookstore.html" class="MenuLink">Book Store</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../2PP.html" class="MenuLink">Camouflage Passports</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../covisa.html" class="MenuLink">Company Credit Card</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../secret/consultants.htm" class="MenuLink">Consultation</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../reports/ibits.html" class="MenuLink">Corporations &amp; Trusts</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../atmcc.html" class="MenuLink">Credit/ATM Cards </a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../auto/degrees.html" class="MenuLink">Degrees</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../dippp.html" class="MenuLink">Diplomatic Passport</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../auto/cenam_dl.html" class="MenuLink">Drivers Licenses &amp; ID</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../finance/index.html" class="MenuLink">Financial Services</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../guarantee.html" class="MenuLink">Guarantee</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../shame.htm" class="MenuLink">Hall Of Shame</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../reports/index.html" class="MenuLink">Instant Reports</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../estate.html" class="MenuLink">Legal Tax Avoidance </a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr> <td height="18" class="PaddingLeft"><a href="../secret/freerpts.html" class="MenuLink">Monthly Missive</a> </td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr>  <tr>  <td height="18" class="PaddingLeft"><a href="../auto/anon_phone.htm" class="MenuLink">Mobile Phone &amp; Sim Chip</a></td> </tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr> <tr><td height="18" class="PaddingLeft"><a href="../auto/maildrops.html" class="MenuLink">Mail Drops</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../pass2.html" class="MenuLink">New Passport Report</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../taxfree.html" class="MenuLink">Offshore Bank Accounts</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../newsletters.html" class="MenuLink">Offshore Newsletters</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../store/index.html" class="MenuLink">Offshore Store</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../https://www.ptshamrock.com/order.html" class="MenuLink">Order Form</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../dss-key.html" class="MenuLink">Our PGP Key</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../2pp.html" class="MenuLink">Passport Programs</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../ptbuzz.html" class="MenuLink">Privacy Newsletter</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../ptcard.html" class="MenuLink">PTCard&trade; Log-In </a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../ids.html" class="MenuLink">Misc ID</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../2pp.html" class="MenuLink">Residency Programs</a> </td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../secret/index.html" class="MenuLink">PT Secret Services </a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr><td height="18" class="PaddingLeft"><a href="../auto/travelid.html" class="MenuLink">Travel Agent ID</a> </td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr> <tr> <td height="18" class="PaddingLeft"> <a href="../auto/degrees.html" class="MenuLink">University Degrees</a></td></tr><tr><td height="1" align="center"><img src="../images/layout/link_dotted.gif" alt="" width="204" height="1"></td> </tr><tr> <td height="18" class="PaddingLeft"> &nbsp;</td></tr><tr><td height="1" align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Email: <a href="../contactus.htm" class="MenuLink">Click Here</a></td> </tr> </table>';

var NewsLetter = '<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>&nbsp;</td> </tr> <tr> <td valign="top" class="FreeNewsBG"><form action="http://cgi.mail-list.com/sub.pl" method="post" enctype="application/x-www-form-urlencoded" name="" id=""> <input type="hidden" name="list_name" value="ptbuzz"> <input type="hidden" name="subscribe_followup_url" value="http://www.ptshamrock.com/thanks.html"> <input type="hidden" name="list_description" value="PT Shamrock\'s Privacy and Offshore Newsletter"> <input type="hidden" name="frames" value="NO"> <input type="hidden" name="query_string" value="NO"> <input type="hidden" name="command" value="Subscribe"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><table width="85%" border="0" align="center" cellpadding="2" cellspacing="0"> <tr> <td height="60" colspan="2" valign="top">&nbsp;</td> </tr> <tr> <td colspan="2" align="right" valign="top">Probably the Oldest and Best Privacy Newsletter on the Net!</td> </tr> <tr> <td width="28%" align="right" class="SmallText"><span class="ColorText5"><strong>Email:</strong></span>&nbsp;</td> <td width="72%"><input name="email_address" type="text" id="Width" size="15" maxlength="100"></td> </tr> <tr> <td colspan="2" align="right"><input name="submit22" type="submit" class="Button" value="Subscribe"></td> </tr> </table></td> </tr> </table> </form></td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td align="center"><script type="text/javascript">TrustLogo("/images/others/security_seal.gif", "SC", "none");</script>  </td>  </tr> </table>' ;
var fDate = writeTheDate(); 				
var Footer = '<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top" class="Color5 PaddingTB"><table width="780" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="50%" id="FooterTD">PT Shamrock Limited<br> </td> <td width="50%" align="right" id="FooterTD"><p>Online since April 1996.<BR> This web site was last updated on '+ fDate +'</p></td> </tr> <tr> <td height="25" id="FooterTD"><br></td> <td align="right" id="FooterTD"><a href="privacy_policy.html" class="Links ColorText1">Privacy Policy</a> | <a href="termsofuse.html" class="Links ColorText1">Terms of Use</a> </td> </tr> <tr> <td id="FooterTD">Or order immediately using our SSL Secure on-line <a href="https://www.ptshamrock.com/order.html" class="LinksUL ColorText1">Order Form.</a></td> <td align="right" id="FooterTD">Copyright 1997 - 2010, PT Shamrock. All Rights Reserved.</td> </tr> </table></td></tr></table>' ;

var InnerFooter = '<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top" class="Color5 PaddingTB"><table width="780" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="50%" id="FooterTD">PT Shamrock Limited<br></td> <td width="50%" align="right" id="FooterTD"><p>Online since April 1996.<BR> This web site was last updated on '+ fDate +'</p></td> </tr> <tr> <td height="25" id="FooterTD"><br></td> <td align="right" id="FooterTD"><a href="../privacy_policy.html" class="Links ColorText1">Privacy Policy</a> | <a href="../termsofuse.html" class="Links ColorText1">Terms of Use</a> </td> </tr> <tr> <td id="FooterTD">Or order immediately using our SSL Secure on-line <a href="https://www.ptshamrock.com/order.html" class="LinksUL ColorText1">Order Form.</a></td> <td align="right" id="FooterTD">Copyright 1997 - 2009, PT Shamrock. All Rights Reserved.</td> </tr> </table></td></tr></table>';