function GOpen(img1)
{
window.open('showimg.php?pic='+img1, '', 'height=200,width=400,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes')
}

function addFavorites(fav){
			switch(fav){
				case 'fb': window.open('http://www.facebook.com/share.php?u='+location.href); break;
				case 'vk': window.open('http://vkontakte.ru/share.php?url='+location.href); break;
				case 'lj': 
					var this_text = 'http://www.livejournal.com/update.bml?subject='+encodeURIComponent(this_title)+'&event='+encodeURIComponent(document.getElementById('block_content').innerText);
					text_array = this_text.split('%20');
					new_text = new String(); i=0;
					text_add = encodeURIComponent('<br/><br/><a href="'+location.href+'">Подробнее</a>');
					while(i<text_array.length && (new_text+text_array[i]+text_add).length < 2048){
						new_text += text_array[i]+'%20';
						i++;
					}
					new_text += '...'+text_add;
					
					window.open(new_text); break;
				case 'tw': window.open('http://twitter.com/home/?status='+location.href+'+-+'+encodeURIComponent(this_title)); break;
				case 'mm': window.open('http://connect.mail.ru/share?share_url='+location.href); break;
				default: break;
			}
		}		
			
		function printFavorites(){
			var favs_array = new Array('fb','tw','lj');
			var titles_array=new Array('Facebook','Twitter','LiveJournal');
			
			document.write('<table cellpadding="5" cellspacing="0" style="color:#EEEEEE;"><tr valign="middle"><!--td nowrap>Отправить:</td--><td nowrap>');
			for(i=0; i<favs_array.length; i++){
				document.write('<a title="'+titles_array[i]+'" style="float:left; background:URL(favorites/'+favs_array[i]+'.gif) no-repeat; cursor:pointer; padding:2px 7px 0 7px; margin-left:5px;" onclick="addFavorites(\''+favs_array[i]+'\')">&nbsp;</a>');
			}
			document.write('</td></tr></table>');
		}

function createPictureWindow(Path,Width,Height,Title)
{
	var p = Math.ceil(Math.random()*10000);
	var q = Math.ceil(Math.random()*p);
	windowName = p+'X'+(Width*p)+(Height*q);
	WinFeatures = "top="+(screen.height-Height)/2+",left="+(screen.width-Width)/2+",width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes";
	w = window.open("",windowName,WinFeatures);
	w.document.open();
	w.document.write('<head><title></title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
	w.document.write("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='&quot;"+Title+"&quot;'></body>"); 
	w.document.close();
}
