// JavaScript Document
	function NewOne(name1, name2){
		this.titleName = name1
		this.pageName = name2
		this.cutName = cutName
		this.getTitleName = getTitleName
	}
	function cutName(){
		ba = new String(this.pageName)
		arr = ba.split("/")
		pos = arr.length -1
		bb = new String(arr[pos])
		arr = bb.split(".")
		return arr[0]
	}
	function getTitleName(){
		return this.titleName
	}
		something = new NewOne(".: Auto Salvage & Rebuildable Cars for Sale Repairables & Used Parts:.  ", document.location)
	var a = something.getTitleName()
	var b = something.cutName()
	if(b == "contactInformation"){
		b = "Contact Information"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "direction"){
		b = "Direction"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "disclaimer"){
		b = "Legal Disclaimer"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "faq"){
		b = "Frequently Asked Questions"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == ""){
		b = "Home"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "links"){
		b = "Links"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "profile"){
		b = "Profile"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "result"){
		b = "Search Result"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "shipping"){
		b = "Shipping Information"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "titleinfo"){
		b = "Title Information"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}
	if(b == "wallpaper"){
		b = "Wallpaper"
		c = a + b
		document.writeln("<title>"+c+"</title>")
	}