function roller(action,id){
	var thing=document.getElementById(id);
	if (action=='in'){
		var source='_hover';
	}
	else{
		var source='';
	}
	thing.src='images/'+id+source+'.gif';
}


function img_window(name,four,eight){
	//var xsize=500;
	//var ysize=400;
	var cmd='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"';
	cmd+='"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
	cmd+='<html xmlns="http://www.w3.org/1999/xhtml">';
	cmd+='<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />';
	cmd+='<title>Big Bounce Rentals | Moonbounces and More!</title>';
	cmd+='<link href="bbr.css" rel="stylesheet" type="text/css" />';
	cmd+='</head><body>';
	cmd+='<div id="wrap"><div id="wrap_top"></div><div id="wrap_middle"><div id="case">';
	cmd+='<div id="button_wrap"><div class="button_box"><div class="background_img"><a href="quote.html" onmouseover="roller(\'in\',\'quote\')" onmouseout="roller(\'out\',\'quote\')"><img src="images/quote.gif" border="false" id="quote" /></a>';
	cmd+='</div></div><div class="button_box"><div class="background_img"><a href="price_list.html" onmouseover="roller(\'in\',\'pics\')" onmouseout="roller(\'out\',\'pics\')"><img src="images/pics.gif" border="false" id="pics" /></a>';
	cmd+='</div></div><div class="button_box" style="margin-bottom:0px;"><div class="background_img"><a href="http://bigbouncerentals.com/specials.html" onmouseover="roller(\'in\',\'packages\')" onmouseout="roller(\'out\',\'packages\')"><img src="images/packages.gif" border="false" id="packages" /></a></div></div></div><div id="con_top"><div id="logo">';
	cmd+='<a href="http://bigbouncerentals.com/"><img src="images/LOGO.gif" border="false" /></a></div></div><div id="con_middle"><div id="text">';
	cmd+='<!--######################################################-->';
	cmd+='<div style="width:500px; margin:auto; font-weight:normal; text-align:center;"><img src=/images/items/'+name+'.jpg /></div>';
	cmd+='<br /><div style="text-align:center;">Four Hours: <strong>'+four+'</strong>&nbsp;&nbsp;&nbsp;Eight Hours: <strong>'+eight+'</strong></div>';
	cmd+='<!--######################################################-->';
	cmd+='</div></div><div id="con_bottom"><div id="img_link_wrap"><a href="#"><img src="images/big_bounce_word.gif" border="false" /></a></div></div></div></div><div id="wrap_bottom"><div id="footer">&copy; Big Bounce Rentals 2008 | designed by: <a href="http://newmandoesit.com/">newmandoesit.com</a></div></div></div><body></html>';
	var wind=window.open();
	wind.document.open();
	wind.document.write(cmd);
	wind.document.close();
}

function mailaddress(add){
	var address=">"
	address+=add;
	address+="@";
	address+="bigbouncerentals.com</a>";
	var atag = "<a href=mailto:";
	document.write(atag+address);
}