/**
* Switch an object's bgcolor
*	this probably doesn't work for Opera/Netscape 
*	hooray, it works for Mozilla!
*
* @author Remmelt Pit <remmelt@remmelt.com>
* @param string theThing the Object to alter
* @return string theColor the color to give its bg
* @access public
*/
function switchcolor(theThing, theColor){
	theThing.setAttribute('bgcolor', theColor, 0);
}

/**
* Opens a new window
*
* @author Remmelt Pit <remmelt@remmelt.com>
* @access public
*/
function openWin(content,path) {
	window.open("/picviewer.php?imgpath="+path+"&content="+content,"pic",0);
}
