function image_open(image_loc,width,height,title)
{
	scr_width = screen.width;
   	scr_height = screen.Height;
	if ((width==null) && (height==null))
	{
		width=280;
		height=220;
	}
   	sx = Math.round((scr_width - width) / 2);
   	sy = Math.round((scr_height - height) / 2) - 20;
   	
   	title="Valdovų Rūmų Paramos Fondas";
   	
	HTML = "<html><head><title>"+title+"</title></head><body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onBlur='self.close()'><img src='"+ image_loc +"' border=0 name=load_image></body></html>";
	popupImage = window.open('','_blank',"width="+width+",height="+height+",screenx="+sx+",screeny="+sy+",left="+sx+",top="+sy);
	popupImage.document.open();
	popupImage.document.write(HTML);
	popupImage.document.close();
}

function video_open(video_loc,width,height,title)
{
	scr_width = screen.width;
   	scr_height = screen.Height;
	if ((width==null) && (height==null))
	{
		width=330;
		height=295;
	}
   	sx = Math.round((scr_width - width) / 2);
   	sy = Math.round((scr_height - height) / 2) - 20;
   	
   	if (title==null || title=='') title="Valdovų Rūmų Paramos Fondas";
   	
	HTML = "<html><head><title>"+title+"</title></head><body bgcolor=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><table width=\"100%\" height=\"100%\"><tr><td width=\"100%\" height=\"100%\" align=\"center\" valign=\"middle\"><object id=\"MediaPlayer\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715\" standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\" width=\""+(width-10)+"\" height=\""+(height-10)+"\"><param name=\"FileName\" value=\""+video_loc+"\"><param name=\"AnimationatStart\" value=\"true\">          <param name=\"TransparentatStart\" value=\"false\"><param name=\"AutoStart\" value=\"true\"><param name=\"ShowControls\" value=\"true\"><embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&\" src=\""+video_loc+"\" showcontrols=\"true\" width=\""+(width-10)+"\" height=\""+(height-10)+"\" filename=\""+video_loc+"\" animationatstart=\"true\" transparentatstart=\"true\" autostart=\"true\"></embed></object></td></tr></table></body></html>";
	popupImage = window.open('','_blank',"width="+width+",height="+height+",screenx="+sx+",screeny="+sy+",left="+sx+",top="+sy);
	popupImage.document.open();
	popupImage.document.write(HTML);
	popupImage.document.close();
}
