﻿function OpenSSC(cItemDesc, cSeries, cValidPart, cMenu) {
	var strGoTo = '';
	//strGoTo = "/SuddenService/Samples/SampleCart.aspx?part=" + cItemDesc + "&series=" + cSeries + "&validpart=" + cValidPart + "&menu=" + cMenu
	strGoTo = "/SuddenService/Samples/LineEdit.aspx?part=" + cItemDesc + "&series=" + cSeries + "&validpart=" + cValidPart;
	var newwin = window.open(strGoTo, 'cart', 'resizable,status,width=500,height=400,scrollbars');
	newwin.focus();
}

function OpenSSC(cItemDesc, cSeries, cValidPart, cMenu, cItemDesc2) {
    var strGoTo = '';
    //strGoTo = "/SuddenService/Samples/SampleCart.aspx?part=" + cItemDesc + "&series=" + cSeries + "&validpart=" + cValidPart + "&menu=" + cMenu
    strGoTo = "/SuddenService/Samples/LineEdit.aspx?part=" + cItemDesc + "&series=" + cSeries + "&validpart=" + cValidPart + "&part2=" + cItemDesc2;
    var newwin = window.open(strGoTo, 'cart', 'resizable,status,width=500,height=400,scrollbars');
    newwin.focus();
}
