function SSWCP(title,imgpath,imgwidth,imgheight,comp,soundpath)
{
var caption   = title + ' by ' + comp;
var winWidth  = Number(imgwidth) + 100;
var rawHeight = Number(imgheight) + 198 + caption.length/7; // calculate window height based on caption length
var winHeight = Math.round(rawHeight * Math.pow(10,0))/Math.pow(10,0); // round to integer

PlayerWin = window.open('/dspClipPlayer.php?title='+title+'&img='+imgpath+'&clip='+soundpath+'&comp='+comp,'SSWCP1','width='+winWidth+',height='+winHeight+',top=0,left=0,resizable=1,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0');
}
