//Functions for Floating text on ProductList
function regenerate(){
	window.location.reload()
}

function regenerate2(){
	if (document.layers){
		appear()
		setTimeout("window.onresize=regenerate",450)
	}
}

function changetext(whichcontent){
	if (document.all||document.getElementById){
		cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
		cross_el.innerHTML='<font face="Verdana"><small>'+whichcontent+'<font></small>'
	}
	else if (document.layers){
		document.d1.document.d2.document.write('<font face="Verdana"><small>'+whichcontent+'</small></font>')
		document.d1.document.d2.document.close()
	}
}

function appear(){
	document.d1.visibility='show'
}

//Pop up window
function NewProductWindow(Link){
	window.open(Link,'Product','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=800, height=600, top=10, left=10')
}
function NewCalculatorWindow(Link){
	window.open(Link,'Product','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=290, height=460, top=10, left=10');
}


