function insert(curl,cicon,caption,longdesc,author,theplace){

var mag_loc="";

var mag_year_a=/2001/;
var mag_year_b=/2002/;

if((mag_year_a.test(curl)) || (mag_year_b.test(curl))){
mag_loc="designingonline.com/dreamsalive";
}
else{
mag_loc="dreamsalivemagazine.com";
}

var shortdesc = longdesc.substring(0,180);
shortdesc=shortdesc + "...";

document.write('<TR>');
document.write('<TD ALIGN=LEFT VALIGN=TOP STYLE="font-family: verdana, arial\; border: inset 1px \#C0C0C0; color: \#000000\; font-size: 9pt\;"><A HREF="http://www.'+mag_loc+'/'+curl+'" TARGET="_'+theplace+'"><IMG SRC="http://www.'+mag_loc+'/'+cicon+'" WIDTH=100 HEIGHT=100 ALT="'+caption+' - '+shortdesc+'" BORDER=0 HSPACE=5 VSPACE=3 ALIGN=LEFT></A> <SPAN STYLE="font-family: times new roman, verdana, arial\; font-size: 12pt\; font-weight: 600\;"><A style="color: #000000;" HREF="http://www.'+mag_loc+'/'+curl+'" TARGET="_'+theplace+'">'+caption+'</A></SPAN><BR><I><B>'+author+'</B></I><BR>&nbsp\;<BR>'+shortdesc+'');
document.write('</TD>');
document.write('</TR>');

} // end insert function


function fullinsert(curl,cicon,caption,longdesc,author,cbg,cfg,theplace){

var mag_loc="";

var mag_year_a=/2001/;
var mag_year_b=/2002/;

if((mag_year_a.test(curl)) || (mag_year_b.test(curl))){
mag_loc="designingonline.com/dreamsalive";
}
else{
mag_loc="dreamsalivemagazine.com";
}

var shortdesc = longdesc.substring(0,160);
shortdesc=shortdesc + "...";
document.write('<TR>');
document.write('<TD ALIGN=LEFT STYLE="font-size: 9pt\; border: inset 1px \#C0C0C0;" VALIGN=TOP WIDTH=100%>');
document.write('<P STYLE="font-family: georgia,times new roman\; color: \#000000\; font-size: 14pt\; padding: 2px\; text-align: center\;" id="interiorPanel"><A style="color: #000000;" HREF="http://www.'+mag_loc+'/'+curl+'" TARGET="_'+theplace+'">'+caption+'</A></P>');
document.write('<DIV STYLE="margin: 5px\; color: \#000000\;">');
document.write('<B>by '+author+'</B>');
document.write('<P class="topTxt"><A HREF="http://www.'+mag_loc+'/'+curl+'" TARGET="_'+theplace+'"><IMG SRC="http://www.'+mag_loc+'/'+cicon+'" WIDTH=100 HEIGHT=100 ALT="'+caption+' - '+shortdesc+'" ALIGN=LEFT HSPACE=10 VSPACE=5 BORDER=0></A>'+longdesc+'...<BR>...<A HREF="http://www.'+mag_loc+'/'+curl+'" TARGET="_'+theplace+'">read more</A></P>');
document.write('</DIV>');
document.write('</TD>');
document.write('</TR>');
} // end fullinsert function


function selectcolor(){

var allcolors=new Array("FFBBFF","FFFFAA","BBDDDD","FFDDAA","BBFFFF","DDDDBB","BBDDFF","AAFFBB","DDBBDD","BBAAFF","FFAABB","BBBBBB");

//pink, yellow, graylbl, orange, lblue, grayyellow, blue, green, graypurple, purple, peach, gray
var colorset=Math.floor(Math.random()*12);
var cbg =allcolors[colorset];

return cbg;

} // end selectcolor function



function makeheader(lstype,amount,headertext){

document.write('<TR>');

	if((lstype == "long") && (amount >= 2)){
		
		document.write('<TD COLSPAN=3 ALIGN=CENTER STYLE="font-family: arial, verdana; color: #964300; font-size: 16pt; font-weight: 600; text-align: center;">');
	}
	else{
		document.write('<TD ALIGN=CENTER STYLE="font-family: arial, verdana; color: #964300; font-size: 16pt; font-weight: 600; text-align: center;">');
	}

		
document.write(''+headertext+'');
document.write('<BR></TD>');
document.write('</TR><TR><TD COLSPAN=3>&nbsp;</TD></TR>');



} // end if header




