<!--
// date and name loading function.
// c.w. - cwcomics.comicgenesis.com
//      c.w.comics@gmail.com

function loadcomiclist()
{
urls =
	[
//-----------------------------------------
// insert date of comic here
// enclose with single quotes, and
// follow with a comma.
// do not begin with two slashes.

// example:

// '20070101',

// begin your list here.



// end your list here.
	];

names = 
	[
//-----------------------------------------
// insert name of comic here
// enclose with single quotes, and
// follow with a comma.
// do not begin with two slashes.
// if there is a single quote within the name
// put a \ before it

// example:

// 'name of comic',
// 'this o\'l comic'

// begin your list here.



// end your list here.
	];
}
//-->