/*
function doSaveAs(){
	if (document.execCommand){
			document.execCommand("SaveAs");
	}else{
			alert('Feature available only in Internet Exlorer 4.0 and later.');
	}
}


function doSaveAs(){
	var str = 'SaveAS for FF';
	Response.ContentType = 'application/unknown';
	Response.addHeader('content-disposition','attachment;filename=myfile.txt');
	Response.Write(str); 
}
*/

function doSaveAs(url){
	_url = url.split("?");
	_ttnews = _url[1].split("&");
	ttnews = _ttnews[1].split("=");	
	uu = _ttnews[0]+"&ttnews="+ttnews[1]+"&"+_ttnews[2]
	window.open("savePage.php?"+uu,"sp","width=1,height=1");
}	





function printpage() {
	window.print();  
}

function sendFriend(url){
	window.open("sendFriend.php?url="+url,"sf","width=500,height=300");

}

