	self.moveTo(0,0);
	self.resizeTo(screen.availWidth,screen.availHeight);
	self.focus();
  
	function AbreInterna(caminhoInterna)
	{
		document.getElementById('Principal').style.display="none";

		document.getElementById('Interna').style.display="block";
		document.getElementById('frame').src = caminhoInterna;
		window.scrollTo(0,0);
	}

	function FechaInterna()
	{
		document.getElementById('Principal').style.display="block";
		document.getElementById('Interna').style.display="none";
		document.getElementById('frame').src = 'Galery.html';
	}



	function nospmemail(to){
			location.href = "mailto" + ":" + to + "@" + "jonathanhallam" + "." + "com";
	} 

	function redirect(to){
		window.open(to);
	}

	function InsertSampleMovie(movie)
	{
		document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="600" height="500">\n');
		document.write('<param name="src" value="' + movie + '" />\n');
		document.write('<param name="autoplay" value="true" />\n');
		document.write('<param name="controller" value="true" />\n');
		document.write('<param name="loop" value="false" />\n');
		document.write('<param name="cache" value="true" />\n');
		document.write('<embed src="' + movie + '" width="600" height="496" autoplay="true" cache="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/download/">\n');
		document.write('</embed>\n');
		document.write('</object>\n');
	}

