// JavaScript Document
main_url 	= 'http://www.chabad.fm';
url			= location.href;
title		= document.title;

width		= screen.width;
height		= screen.height;

function add_to_favretes ()
{
	window.external.AddFavorite (url, document.title);
}
function to_home ()
{
	logo.style.behavior='url(#default#homepage)';
	logo.setHomePage (main_url);
}

function open_Window(url, kname, width, height)
{
	popupWin = window.open (url, 'ksolop', 'scrollbars=yes,resizable,status=1,width=' + width + ', height=' + height)
}

function send_to_frend(url)
{
	open_Window (url, 'send_to_frend', 450, 180);
}

function w_close(url)
{
	window.close ();
}

//http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp?frame=true
