function showBeerCam(domain,id,w,h,type,sort,comingSoon)
{
//If domain is missing or null use default of www.yourround.co.uk
if(domain == null)
{domain = 'http://www.yourround.co.uk/' }
//If ID is missing or null use default of 1
if(id==null)
{id='1'}
//If Width is missing or null use default of 520
if(w==null)
{w='520' }
//If Height is missing or null use default of 260
if(h==null)
{h ='260'}
//If Type is missing or null use default of 90
if(type==null)
{ type = '90' }
//If Sort is missing or null use default of sort by name
if (sort==null)
{ sort = "name" }
if (comingSoon == null)
{ comingSoon = false }
document.write('<iframe src="' + domain + 'm_BeerCam.aspx?BeerCamID=' + id + '&FilterType=' + type + '&SortBy=' + sort + '&ComingSoon=' + comingSoon + '" width="' + w + '" height="' + h + '"></iframe>');  
}
