function OpenUrlPopUp(Url,Title,Width,Height){	
	if (Url.indexOf('htt')<0) {
		Url='http://'+extUrl;
		//alert(Url);
	}
	
	var PopUp = window.open(Url,Title,'toolbar=0,top=5,left=5,width='+Width+',height='+Height+',directories=0,status=0,scrollbars=1,resizable=1,menubar=0');
	PopUp.focus();
}

var str1;
str1='<a onclick="OpenUrlPopUp(\'http://www.kata-bags.com/DreamBagChallenge.asp\',\'_new\',\'965,0\',\'580,0\');" style="cursor: pointer; " >Click here fo Kata Bag Challenge</a>'

document.write(str1);



