//************************************************************
// Author		: SoundIt v/Rico Hansen
// Created	: Maj 2005
// 
//************************************************************

function ResizeWindow()
{
	var pwidth = GetId('picture').width;
	var pheight = GetId('picture').height;
	self.resizeTo(pwidth, pheight+150);
	window.focus();
}

function GetId(id)
{
	return (document.all)?document.all(id):document.getElementById(id);
}

function Popup(URL, WindowName, width, height)
{
 winleft = (screen.width / 2) - (width / 2);
 wintop = (screen.height / 2) - (height / 2); 
 window.open (URL, WindowName,'fullscreen=0,width='+width+',height='+height+',toolbar=0,resizable=no,directories=0,status=0,menubar=0,scrollbars=yes,location=0,top='+wintop+',left='+winleft);
}
