
function popupPrintingForm() {
  var width = 750;
  var height = 700;
  var left = (screen.width) ? (screen.width-width)/2 : 0;
  var top = (screen.height) ? (screen.height-height)/2 : 0;
  var newWin=window.open("lge.mdn.com.RetrievePopupPrinting.dev","","toolbar=no,scrollbars=yes,locatioon=no,top="+top+"px,left="+left+"px,width="+width+"px,height="+height+"px");
}

function popupMailingForm() {
  var width = 650;
  var height = 460;
  var left = (screen.width) ? (screen.width-width)/2 : 0;
  var top = (screen.height) ? (screen.height-height)/2 : 0;
  var newWin=window.open("lge.mdn.com.RetrievePopupMailForm.dev","","toolbar=no,scrollbars=no,locatioon=no,top="+top+"px,left="+left+"px,width="+width+"px,height="+height+"px");
}

// href URI encode
function hrefURIEncode(uri) {
	var encStr = encodeURIComponent( location.href );
	return encStr;
}

// title URI encode
function titleURIEncode(uri) {
	var encStr;
	
	if ( !document.getElementById("subTitleId") ) {
		encStr = encodeURIComponent(document.title);
	} else {
		encStr = encodeURIComponent( document.getElementById("subTitleId").innerHTML );
	}

	return encStr;
}

// Bookmark this page : Delicious
function bookmarkDelicious() {
	window.open('http://delicious.com/save?v=5&noui=&jump=close&url='+hrefURIEncode()+'&title='+titleURIEncode(),'wndDelicious','toolbar=yes,width=670,height=550,resizable=yes');
	return false;
}

// Bookmark this page : Google
function bookmarkGoogle() {
	window.open('http://www.google.com/bookmarks/mark?op=add&hl=en&bkmk='+hrefURIEncode()+'&title='+titleURIEncode(),'wndGoogle','toolbar=no,width=800,height=600,resizable=yes');
	return false;
}

// Bookmark this page : Yahoo
function bookmarkYahoo() {
	window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+hrefURIEncode()+'&t='+titleURIEncode(),'wndYahoo','toolbar=no,width=800,height=820,scrollbars=yes,resizable=yes');
	return false;
}

// Bookmark this page : Twitter
function bookmarkTwitter() {
	window.open('http://twitter.com/home?status=Add+This:+'+hrefURIEncode(),'wndTwitter','toolbar=no,width=790,height=550,resizable=yes');
	return false;
}

// Bookmark this page : Facebook
function bookmarkFacebook() {
	window.open('http://www.facebook.com/sharer.php?u='+hrefURIEncode()+'&t='+titleURIEncode(),'wndFacebook','toolbar=no,width=600,height=350,resizable=yes');
	return false;
}
