﻿// JScript File
function popWin(url, winname, width, height) {
    if (typeof width == 'undefined'){ width='800'; }
    if (typeof height == 'undefined'){ height='600'; }
    if (winname == 'Diary') { width='1000'; }
    
    var options = "toolbar=no,location=no,status=yes,scrollbars=yes,resizable=yes,top=10,left=10,height=" + height + ",width=" + width;
    var newwindow = window.open(url, winname, options);
    newwindow.focus();
}

function recalcManX() {
    var qtyselected = document.getElementById('quantity_1').selectedIndex;
    
    if ( qtyselected == 3 ) {
	    document.getElementById('amount_1').value = 12.45;
	}
    else {
	    document.getElementById('amount_1').value = 14.95;
    }
}

function disable(elementid) {
    document.getElementById(elementid).disabled = 'disabled';
}