function windowOpen(url, name) {
	window.open(url, name);
}

var SITE_URL_1 = 'http://jktube.net/';

function outTracker(id, name) {
	var t_my_path = '';
	var t_track_path = '';
	var t_url = document.URL;
	var t_my_index = t_url.indexOf(SITE_URL_1);
	if ( t_my_index != -1 ) {
		t_my_path = t_url.substring(t_my_index + SITE_URL_1.length);
		t_my_path = t_my_path.replace(/\?/g, "");
		t_my_path = t_my_path.replace(/\&/g, "");
		t_my_path = t_my_path.replace(/\=/g, "");
		if ( t_my_path.charAt(t_my_path.length -1) != "/" ) {
			t_my_path = t_my_path + "/";
		}
		if ( t_my_path.charAt(0) != "/" ) {
			t_my_path = "/" + t_my_path;
		}
		t_track_path = "/out/f/" + id + t_my_path + "t/" + name;

		pageTracker._trackPageview(t_track_path);
	}
}

function createSrc(eid,cnm,url) {
	var el1 = document.getElementById(eid);
	var el2 = document.createElement(cnm);
	el2.src = url;
	el1.appendChild(el2);
}

