﻿// JScript File

function popTest()
{
	var newwindow;
	var pathUrl = ''+'printme.html';
	newwindow = window.open(pathUrl,'name','height=420,width=620px');
}

function popSpOffPrint(id)
{
	var newwindow;
	var pathUrl = 'http://www.carsingh.com/specialOffer/printSpOffer.aspx?cid='+id;
	//var pathUrl = 'http://localhost:8080/specialOffer/printSpOffer.aspx?cid='+id;
	newwindow = window.open(pathUrl,'Print_Special_Offer','height=420,width=620px');
}
function popOffPrint(id)
{
	var newwindow;
	//var pathUrl = 'http://localhost:8080/specialOffer/printOffer.aspx?cid='+id;
	var pathUrl = 'http://www.carsingh.com/specialOffer/printOffer.aspx?cid='+id;
	newwindow = window.open(pathUrl,'Print_Offer','height=420,width=620px');
}