<!-- Thanks to BTP for the QuickQuote JS..and Thanks to C1 for the Delete JS and Open Window JS -->
<!-- QuickQuote JS -->

var postid = 0;
	function quicked(postid) {
    var phide;
    var eshow;
    if (document.getElementById("post"+postid).style.display != 'none') {
        phide = 'none';
        eshow = 'block';
    } else {
        phide = 'block';
        eshow = 'none';
    }
    document.getElementById("post"+postid).style.display = phide;
    document.getElementById("edit"+postid).style.display = eshow;
    //setTimeout("post"+postid+".style.visibility = none; edit"+postid+".style.visibility = block", 0);
}

function quickquote(postid,uname) {
    postdata = document.getElementById("postdata"+postid).value;
    postdata = "[quote="+uname+"]\n"+postdata+"\n[/quote]\n\n";
    document.getElementById("quickedit").value = document.getElementById("quickedit").value+postdata;
    document.location.hash='#quickedit';
    document.getElementById("quickedit").focus();
}

<!-- Open Window JS -->

	function open_window() {
		window.open('http://www.archamond.com/userguide.php#q_1337','','width=850,height=500,scrollbars=yes,resizable=yes');
	}

<!-- Deletion JS -->

function checksure() {
	var agree=confirm("Are you sure you wish to continue?");
		if (agree){
	return true ;
		}else{
	return false ;
		}
}	



var img_link = 0
<!-- Mouse over/out for one-on-a-page-link buttons-->
function mouse_over_l(img_link)
{
document.l1.src ="images/live/" + img_link
}
function mouse_out_l(img_link)
{
document.l1.src ="images/live/" + img_link
}
function mouse_over_l0(img_link)
{
document.l0.src ="images/live/" + img_link
}
function mouse_out_l0(img_link)
{
document.l0.src ="images/live/" + img_link
}


<!-- Mouse over/out for live buttons-->
function mouse_over_wwp()
{
document.l1.src ="images/live/wwp2.jpg"
}
function mouse_out_wwp()
{
document.l1.src ="images/live/wwp.jpg"
}
function mouse_over_wa()
{
document.l2.src ="images/live/wa2.jpg"
}
function mouse_out_wa()
{
document.l2.src ="images/live/wa.jpg"
}
function mouse_over_w3d()
{
document.l3.src ="images/live/w3d2.jpg"
}
function mouse_out_w3d()
{
document.l3.src ="images/live/w3d.jpg"
}

















