function launchwindow(url, name, hgt, wdt)
{
    var options;
    if ( hgt == 0 || wdt == 0 )
		options = "";
	else
		options = 'SCROLLBARS=NO,STATUS=NO,RESIZE=NO,WIDTH=' + wdt + ',HEIGHT=' + hgt + ',TOP=25,LEFT=25';
	var newwindow;
	newwindow=window.open(url,name,options);
	if (window.focus) {newwindow.focus()}
}

function launchstonechart() { launchwindow('showcrystals.aspx','tggcrys','750','750' ) }
function launchfontchart()  { launchwindow('showfont.aspx','tggft', '675', '555') }
function launchfabricchart(){ launchwindow('chartfabrics.aspx','tggcl', '550', 0) }
function launchprivacy()    { launchwindow('InfoPrivacy.aspx','tggprv', '650', '500') }
function launchshirtchart(id) { if ( id == 0 ) launchwindow('showsizes.aspx','tggsz', 600, 900 );
    else launchwindow('showsizes.aspx?p=' + id, 'tggsz', 600, 750);
}

