﻿function openTweetThisWindow(tweetUrl, tweetString, tweetType) {
    tweet = 'http://www.mindz.com/Functions/TweetThis.aspx?tweetUrl=' + escape(tweetUrl) + '&tweetString=' + encodeURIComponent(tweetString) + '&tweetType=' + tweetType;
	tweetWindow = window.open(tweet, 'tweetWindow');
}

function closeTweetThisWindow() {
	window.focus();
	tweetWindow.close();
}

function openFollowMeWindow(twitterProfileName){
    follow = 'http://www.mindz.com/Functions/TweetThis.aspx?twitterProfileName='+escape(twitterProfileName);
    followWindow = window.open(follow, 'followWindow');
}

function closeFollowMeWindow(){
	window.focus();
	followWindow.close();
}
