////////////////////
// quotebox.js

// code version: 2
// date: 1 May 2006
// author: arvin castro
// email: onebigearth@yahoo.com
// url: http://komski.blogista.com

// USER-DEFINED VALUES
// 
// kwidth   - width and
// kheight  - height of the quotebox
// kbgcolor - background color
// kfcolor1 - font color of quote
// kfcolor2 - color of quoter's name
// kffont   - font-family
// kfsize   - font size
// kfweight - bold or normal
// kcategory- check website for values
// kbstyle  - border-style
// kbcolor  - border-color

kstr = '<iframe width="'+kwidth+'" height="'+kheight+'" frameborder="0" ';
kstr+= 'style="border-style:'+kbstyle+';border-color:'+kbcolor+';border-width:4;" ';
kstr+= 'src="http://komski.awardspace.com/quotes/randomquote.php?';
kstr+= 'category='+kcategory;
kstr+= '&bgcolor='+kbgcolor;
kstr+= '&fcolor1='+kfcolor1;
kstr+= '&fcolor2='+kfcolor2;
kstr+= '&ffont='+kffont;
kstr+= '&fsize='+kfsize;
kstr+= '&fweight='+kfweight;
kstr+= '"></iframe>';
document.write(kstr);