/*

	the windoid 
	
	designed for pop-up windows which are full-sized versions of a thumbnail
	see below for thuimbnail code example..
	
	
	;o)
	(or

*/

function OpenWindow(theURL, width, height, left, top) {
	{ 
	window.open(theURL , "" ,"width="+ width +",height="+ height +",left="+ left +", top="+ top +", toolbar=no,directories=0,menubar=no,status=no,resizable=0,location=0,scrollbars=2,copyhistory=0") 
	}
}
function OpenChatWindow(theURL, width, height, left, top) {
	{ 
	window.open(theURL , "" ,"width="+ width +",height="+ height +",left="+ left +", top="+ top +", toolbar=no,directories=0,menubar=no,status=no,resizable=1,location=0,scrollbars=2,copyhistory=1") 
	}
}
/* feed this function something like this..

<script type="text/javascript"><!--
  		document.write("<a href=\"javascript:OpenWindow('img/installcap01.jpg',540,260,100,50)\" title=\"all the double-clickness you could want!\nopens in a windoid\">") //--></script>
		<noscript><a href="img/installcap01.jpg" onclick="window.open(this.href); return false;"
		title="opens in a new window"></noscript>
		<img src="img/installcap01_tn.jpg" border=0 
		alt="all the double-clickness you could want in a unix app!"></a>
*/