Bu konuyu vereceğimi önceki gün söylemiştim. Zaman oldukça bu tip onlarca şey vereceğim inşallah.

Aşağıdaki kodları içeriklerin geleceği yerin altına koyuyoruz.

<a href="javascript:;" onClick="window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'google','toolbar=yes,scrollbars=yes,resizable=yes,width=800,height=600'); return false;"><img src="resimler/book_google.gif" alt="Google Bookmark'a Ekle" title="Google Bookmark'a Ekle" border="0"></a>
bu aşağıdakileri de u.js adli bir dosyaya yapıştırın ve JS klasörünüze atın:

function popup2(url, window_name, width, height) {
	var left = parseInt((screen.width - width) / 2);
	var top = parseInt((screen.height - height) / 2);
	var wnd = window.open(url, 
		window_name, 
		'status=1, toolbar=0, menubar=0, scrollbars=no, resizable=0, ' +
		'left=' + left + ', top=' + top + ', ' +
		'width=' + width + ', height=' + height);
	wnd.focus();
	return wnd;
}


function _uES(s,u) {
 if (typeof(encodeURIComponent) == 'function') {
  if (u) return encodeURI(s);
  else return encodeURIComponent(s);
 } else {
  return escape(s);
 }
en son şunu da sitenizin META bilgileri altına koyun:

<script language="JavaScript" src="js/u.js" type="text/javascript"></script>

Olay bu kadar.
Kendimi javascript konusunda yeni yeni eğitmeye başlıyorum. Hocalarımın öğrettiği kadar sizlerle de paylaşmaya çalışıyorum. Kolay gelsin.