// JavaScript Document

function init(id, featured, type, pan, tilt, zoom)
{
	$(".dropShadow").wrap("<div class='wrap1'><div class='wrap2'><div class='wrap3'></div></div></div>");
	
	$("#vrViewer").jmedia(
		{version:"6,0"},
		{src:'http://housser.ca/vr/fpp/files/pano.swf',
		id: 'pano',
		name: 'pano',
		flashVars: 'xml_file=http://housser.ca/vr/fpp/generic.php?id=' + id,
		width: '100%',
		height: '100%',
		AllowScriptAccess: 'sameDomain',
		AllowFullScreen: 'true'
	});
	
	$(".emailJohn").wrap('<a href="mailto:john@housser.ca"></a>');
}

function initDev(id)
{
	$(".dropShadow").wrap("<div class='wrap1'><div class='wrap2'><div class='wrap3'></div></div></div>");
	
	$("#vrViewer").jmedia(
		{version:"6,0"},
		{src:'http://housser.ca/vr/fpp/files/pano.swf',
		id: 'pano',
		name: 'pano',
		flashVars: 'xml_file=http://housser.ca/vr/fpp/genericDev.xml?id=' + id,
		width: '100%',
		height: '100%',
		AllowScriptAccess: 'sameDomain',
		AllowFullScreen: 'true'
	});
	
	$(".emailJohn").wrap('<a href="mailto:john@housser.ca"></a>');
}


function FullScreen(theURL) {
	var theWindowName = 'FullScreen' ;
	window.open(theURL, theWindowName , 'resizable=yes, status=yes, scrollbars=auto');
}

