
function head1Text(Heading){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=3 color='#FFCC66'>"+Heading+"</font>");
}
function head1LargeText(Heading){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=4 color='#FFCC66'>"+Heading+"</font>");
}

function head2Text(Heading){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#99FFFF'><BR><BR><b><i>"+Heading+"</i></b></font>");
}


function plainText(Paragraph){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#FFFFCC'>"+Paragraph+"</font>");
}

function highlightText(Highlight){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#66FF99'>"+Highlight+"</font>");
}

function itemText(Code,Highlight,Price){
document.writeln("<BR><font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#FF00CC'>"+Code+"</font>");
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#99FFFF'><b><i>"+Highlight+"</i></b></font>");
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=2 color='#FF00CC'>"+Price+"</font>");
}

function linkText(link,text){
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=3 color='#99FF99'><A HREF='"+link+"'>"+text+"</A></font>");
}

function createWindow(cUrl,cName,cFeatures) {
var xWin = window.open(cUrl,cName,cFeatures);
}

function sideImage(Source,Comment){
document.writeln("<TR align='center'><TD valign='top' align='center'>");
document.writeln("<IMG height=292 hspace=4  src='comicimages/"+Source+"' width=190 align=left  border=0>");
document.writeln("</TD></TR><TR align='center'><TD valign='top' align='center'>");
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=1 color='#66FF99'><b>"+Comment+"</b></font>");
document.writeln("</TD align='center'></TR>");
}

function sizedImage(Source,Comment,Height,Width){
document.writeln("<TR align='center'><TD valign='top' align='center'>");
document.writeln("<IMG height="+Height+" width="+Width+" hspace=4  src='comicimages/"+Source+"' width=190 align=left  border=0>");
document.writeln("</TD></TR><TR align='center'><TD valign='top' align='center'>");
document.writeln("<font face='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' size=1 color='#66FF99'><b>"+Comment+"</b></font>");
document.writeln("</TD></TR>");
}

function openTable(Alignment){
document.writeln("<table width='100%' border='0' height='100%' cellspacing='5' cellpadding='5' align='"+Alignment+"'><TR>");
}

function closeTable(){
document.writeln("</table>");
}

function openRow(){
document.writeln("<tr>");
}

function closeRow(){
document.writeln("</tr>");
}

function openCell(){
document.writeln("<TD valign='top' align='left'>");
}

function closeCell(){
document.writeln("</TD>");
}