function openTestimonial(theURL) {
	winOpen(theURL, 'testimonial', '240', '320', 'no', 'no');
	alert("asdad");
}
function winOpen(theURL, Name, popW, popH, scroller, resize){ // V 1.0
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroller+',resizable='+resize;
	Win = window.open(theURL, Name, winProp);
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}