function ShowSinformation(sId) 
{	
	var w = 500;
	var h = 500;
	
	var w = window.open('inSinformation.aspx?id='+sId,'','width=' + w + ',height='+ h +',menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=yes');
	if(w != null)	w.focus();
}

function addComment(newsId) 
{	
	var width = 530;
	var height = 300;
	var w = window.open('/user/addnewscomment.aspx?id='+newsId,'addComment','width=' + width + ',height='+ height +',menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=yes');
	if(w != null)	w.focus();
}

function listComments(newsId) 
{
	var width = 530;
	var height = 300;	
		
	var w = window.open('/user/newscomments.aspx?id='+newsId,'listComments','width=' + width + ',height='+ height +',menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=yes');
	if(w != null)	w.focus();
}

function sendFriend(newsId,newsTypeId)
{
	var width = 530;
	var height = 300;
	var w = window.open('/user/sendNewsMail.aspx?id='+newsId+'&tid='+newsTypeId,'sendFriend','width=' + width + ',height='+ height +',menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=yes');
	if(w != null)	w.focus();
}

function sendAuthMail(authId,newsId)
{
	var width = 530;
	var height = 300;
	var w = window.open('/user/sendAuthMail.aspx?id='+authId+'&nid='+newsId,'sendAuth','width=' + width + ',height='+ height +',menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=yes');
	if(w != null)	w.focus();
}

function openTicker() 
{
	var width = 280;
	var height = 431;
	var w = window.open('/ticker.aspx','Ticker','width=' + width + ',height='+ height +',menubar=no,toolbar=no,location=no,scrollbars=no,status=no,resizable=no');
	if(w != null)	w.focus();
}

function addToFavorites()
{
	window.external.AddFavorite('http://www.turizmgazetesi.com','Turizm Gazetesi');
}
