// JavaScript Document
function openwindow(url,wdth,hgt){
	var feature = "width="+ wdth + ",height=" + hgt +",resizable=yes,scrollbars=yes";
	artist = window.open(url,"artist",feature);
	artist.focus();
}
