function openWinDoc(docName, sizew, sizeh){
	var doc = "/doc/" + docName;
    imgWindow = window.open("", "", "width="+sizew+",height="+sizeh+",status=no,scrollbar=no,menubar=no,resizable=yes,screenX=0,screenY=0,left=0,top=0");
    imgWindow.location = doc;
}

function openWinDocScroll(docName, sizew, sizeh){
	var doc = "/doc/" + docName;
    imgWindow = window.open("", "", "width="+sizew+",height="+sizeh+",status=no,menubar=no,scrollbars=1,resizable=yes,screenX=0,screenY=0,left=0,top=0");
    imgWindow.location = doc;
}

function openWinImageName(imgName, sizew, sizeh){

    var img = "/img/" + imgName;
    var w = sizew + 1;
	var h = sizeh + 1;
    imgWindow = window.open("", "", "width="+w+",height="+h+",status=no,scrollbar=no,menubar=no,resizable=yes,screenX=0,screenY=0,left=0,top=0");
    imgWindow.document.write("<HTML><HEAD><title>Early Keyboards of Atlanta</title></HEAD>");
	imgWindow.document.write("<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><TABLE border=0 ALIGN=CENTERCELLPADDING=0 CELLSPACING=0>")
	imgWindow.document.write("<TR><TD ALIGN=LEFT VALIGN=TOP><IMG border=0 SRC=" + img + "></TD></TR>");
	imgWindow.document.write("</TABLE>");
	imgWindow.document.write("</BODY></HTML>");
    
}

function openWinLoc(page) {
	newWin = this.open(page, "Link", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}
  
function spamMsg() {
   alert("Please contact the webmaster for any questions or concerns about this site using the email address provided on the screen. Thank you for your feedback.");
}  
